Commit 2ab69ee7 by Nicolas Capens

Remove createCall() from the interface.

It's only used for creating intrinsics calls, which is an implementation detail. Bug swiftshader:10 Change-Id: Ieac1303e08571e265e239e74c6ea84ece99b53e1 Reviewed-on: https://swiftshader-review.googlesource.com/7278Tested-by: 's avatarNicolas Capens <capn@google.com> Reviewed-by: 's avatarAlexis Hétu <sugoi@google.com>
parent 1933654b
...@@ -153,13 +153,6 @@ namespace sw ...@@ -153,13 +153,6 @@ namespace sw
static Value *createFCmpULE(Value *lhs, Value *rhs); static Value *createFCmpULE(Value *lhs, Value *rhs);
static Value *createFCmpUNE(Value *lhs, Value *rhs); static Value *createFCmpUNE(Value *lhs, Value *rhs);
// Call instructions
static Value *createCall(Value *callee);
static Value *createCall(Value *callee, Value *Arg);
static Value *createCall(Value *callee, Value *Arg1, Value *Arg2);
static Value *createCall(Value *callee, Value *Arg1, Value *Arg2, Value *Arg3);
static Value *createCall(Value *callee, Value *Arg1, Value *Arg2, Value *Arg3,Value *Arg4);
// Vector instructions // Vector instructions
static Value *createExtractElement(Value *vector, int index); static Value *createExtractElement(Value *vector, int index);
static Value *createInsertElement(Value *vector, Value *element, int index); static Value *createInsertElement(Value *vector, Value *element, int index);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment