diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-09 19:59:31 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-09 19:59:31 +0000 |
commit | e06e9146eeb48e3ebf0f30bdaf7d86a6e03946ad (patch) | |
tree | 88c367a169fcecba357d0eef998e9b7e7cabd4b0 /include/llvm/Assembly | |
parent | 73e214244f2403b5ba0ef81b8839600f3c8ffebc (diff) | |
download | external_llvm-e06e9146eeb48e3ebf0f30bdaf7d86a6e03946ad.zip external_llvm-e06e9146eeb48e3ebf0f30bdaf7d86a6e03946ad.tar.gz external_llvm-e06e9146eeb48e3ebf0f30bdaf7d86a6e03946ad.tar.bz2 |
Move FunctionArgument out of iOther.h into Argument.h and rename class to
be 'Argument' instead of FunctionArgument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2217 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r-- | include/llvm/Assembly/CachedWriter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Assembly/CachedWriter.h b/include/llvm/Assembly/CachedWriter.h index 2d4741b..f78df1a 100644 --- a/include/llvm/Assembly/CachedWriter.h +++ b/include/llvm/Assembly/CachedWriter.h @@ -15,7 +15,7 @@ class GlobalVariable; class Function; -class FunctionArgument; +class Argument; class BasicBlock; class Instruction; class Constant; @@ -55,7 +55,7 @@ public: inline CachedWriter &operator<<(const Function *X) { return *this << (const Value*)X; } - inline CachedWriter &operator<<(const FunctionArgument *X) { + inline CachedWriter &operator<<(const Argument *X) { return *this << (const Value*)X; } inline CachedWriter &operator<<(const BasicBlock *X) { |