summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-04-09 01:19:28 +0000
committerDan Gohman <gohman@apple.com>2010-04-09 01:19:28 +0000
commit094b1c851dbc189aee5db580338c4c2206133b88 (patch)
tree6c9c91874eea63ddbc35fb503c05f39f241992cc /include
parent8829cec25fe77cadbd99dcf7bbbce4969eb5704a (diff)
downloadllvm-094b1c851dbc189aee5db580338c4c2206133b88.tar.gz
llvm-094b1c851dbc189aee5db580338c4c2206133b88.tar.bz2
llvm-094b1c851dbc189aee5db580338c4c2206133b88.tar.xz
Don't use reserved identifiers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100838 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Support/CallSite.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/llvm/Support/CallSite.h b/include/llvm/Support/CallSite.h
index 9f527e2df6..c7a438e549 100644
--- a/include/llvm/Support/CallSite.h
+++ b/include/llvm/Support/CallSite.h
@@ -179,24 +179,24 @@ private:
/// ImmutableCallSite - establish a view to a call site for examination
class ImmutableCallSite : public CallSiteBase<> {
- typedef CallSiteBase<> _Base;
+ typedef CallSiteBase<> Base;
public:
- ImmutableCallSite(const Value* V) : _Base(V) {}
- ImmutableCallSite(const CallInst *CI) : _Base(CI) {}
- ImmutableCallSite(const InvokeInst *II) : _Base(II) {}
- ImmutableCallSite(const Instruction *II) : _Base(II) {}
+ ImmutableCallSite(const Value* V) : Base(V) {}
+ ImmutableCallSite(const CallInst *CI) : Base(CI) {}
+ ImmutableCallSite(const InvokeInst *II) : Base(II) {}
+ ImmutableCallSite(const Instruction *II) : Base(II) {}
};
class CallSite : public CallSiteBase<Function, Value, User, Instruction,
CallInst, InvokeInst, User::op_iterator> {
typedef CallSiteBase<Function, Value, User, Instruction,
- CallInst, InvokeInst, User::op_iterator> _Base;
+ CallInst, InvokeInst, User::op_iterator> Base;
public:
CallSite() {}
- CallSite(_Base B) : _Base(B) {}
- CallSite(CallInst *CI) : _Base(CI) {}
- CallSite(InvokeInst *II) : _Base(II) {}
- CallSite(Instruction *II) : _Base(II) {}
+ CallSite(Base B) : Base(B) {}
+ CallSite(CallInst *CI) : Base(CI) {}
+ CallSite(InvokeInst *II) : Base(II) {}
+ CallSite(Instruction *II) : Base(II) {}
bool operator==(const CallSite &CS) const { return I == CS.I; }
bool operator!=(const CallSite &CS) const { return I != CS.I; }
@@ -207,7 +207,7 @@ public:
/// NOT a call site.
///
static CallSite get(Value *V) {
- return _Base::get(V);
+ return Base::get(V);
}
/// getCallingConv/setCallingConv - get or set the calling convention of the