mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-20 05:38:50 +00:00
back out r107580, I have seen what I wanted
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107582 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d9cb7ca388
commit
69439cb919
@ -940,24 +940,8 @@ public:
|
|||||||
unsigned(isTC));
|
unsigned(isTC));
|
||||||
}
|
}
|
||||||
|
|
||||||
/// @deprecated these "define hacks" will go away soon
|
|
||||||
/// @brief coerce out-of-tree code to abandon the low-level interfaces
|
|
||||||
/// @detail see below comments and update your code to high-level interfaces
|
|
||||||
/// in LLVM v2.8-only code
|
|
||||||
/// - getOperand(N+1) ---> getArgOperand(N)
|
|
||||||
/// - setOperand(N+1, V) ---> setArgOperand(N, V)
|
|
||||||
/// - getNumOperands() ---> getNumArgOperands()+1 // note the "+1"!
|
|
||||||
///
|
|
||||||
/// in backward compatible code please consult llvm/Support/CallSite.h,
|
|
||||||
/// you should create a callsite using the CallInst pointer and call its methods
|
|
||||||
///
|
|
||||||
# define public private
|
|
||||||
# define protected private
|
|
||||||
/// Provide fast operand accessors
|
/// Provide fast operand accessors
|
||||||
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
|
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
|
||||||
# undef public
|
|
||||||
# undef protected
|
|
||||||
public:
|
|
||||||
|
|
||||||
enum { ArgOffset = 1 }; ///< temporary, do not use for new code!
|
enum { ArgOffset = 1 }; ///< temporary, do not use for new code!
|
||||||
unsigned getNumArgOperands() const { return getNumOperands() - 1; }
|
unsigned getNumArgOperands() const { return getNumOperands() - 1; }
|
||||||
@ -967,7 +951,7 @@ public:
|
|||||||
/// Provide compile-time errors for accessing operand 0
|
/// Provide compile-time errors for accessing operand 0
|
||||||
/// @deprecated these will go away soon
|
/// @deprecated these will go away soon
|
||||||
/// @detail see below comments and update your code to high-level interfaces
|
/// @detail see below comments and update your code to high-level interfaces
|
||||||
/// - getOperand(0) ---> getCalledValue(), or possibly getCalledFunction()
|
/// - getOperand(0) ---> getCalledValue()
|
||||||
/// - setOperand(0, V) ---> setCalledFunction(V)
|
/// - setOperand(0, V) ---> setCalledFunction(V)
|
||||||
///
|
///
|
||||||
private:
|
private:
|
||||||
@ -1123,10 +1107,6 @@ CallInst::CallInst(Value *Func, InputIterator ArgBegin, InputIterator ArgEnd,
|
|||||||
typename std::iterator_traits<InputIterator>::iterator_category());
|
typename std::iterator_traits<InputIterator>::iterator_category());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// Note: if you get compile errors about private methods then
|
|
||||||
// please update your code to use the high-level operand
|
|
||||||
// interfaces. See line 943 above.
|
|
||||||
DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CallInst, Value)
|
DEFINE_TRANSPARENT_OPERAND_ACCESSORS(CallInst, Value)
|
||||||
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user