diff options
author | Gabor Greif <ggreif@gmail.com> | 2010-07-01 15:42:00 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2010-07-01 15:42:00 +0000 |
commit | 194db3587c4337f65cb8dd0cc0ee53bc1333fc8d (patch) | |
tree | 664962c6bed00a6cc4d1f70bec8ec1819955d848 /include/llvm/Instructions.h | |
parent | 0ca182b823b738cd5c8df3744fb245e11786ba63 (diff) | |
download | external_llvm-194db3587c4337f65cb8dd0cc0ee53bc1333fc8d.zip external_llvm-194db3587c4337f65cb8dd0cc0ee53bc1333fc8d.tar.gz external_llvm-194db3587c4337f65cb8dd0cc0ee53bc1333fc8d.tar.bz2 |
back out r107396 for now, it needs another minor change to function as advertised
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107399 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Instructions.h')
-rw-r--r-- | include/llvm/Instructions.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index 02cc947..8143292 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -948,13 +948,6 @@ public: Value *getArgOperand(unsigned i) const { return getOperand(i + ArgOffset); } void setArgOperand(unsigned i, Value *v) { setOperand(i + ArgOffset, v); } - /// Provide compile-time errors for accessing operand 0 - /// @deprecated these will go away soon - /// @detail see below comments and update your code to high-level interfaces - /// - void getOperand(void*); // NO IMPL ---> use getCalledValue (or possibly getCalledFunction) instead - void setOperand(void*, Value*); // NO IMPL ---> use setCalledFunction instead - /// getCallingConv/setCallingConv - Get or set the calling convention of this /// function call. CallingConv::ID getCallingConv() const { |