mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-20 19:19:55 +00:00
evil hack to coerce external users (projects)
to update their code to high-level interfaces If you get compile errors in your project please update your code according to the comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107396 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
63b95a6f82
commit
0ca182b823
@ -948,6 +948,13 @@ 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 {
|
||||
|
Loading…
Reference in New Issue
Block a user