diff options
| author | Devang Patel <dpatel@apple.com> | 2008-09-23 23:03:40 +0000 |
|---|---|---|
| committer | Devang Patel <dpatel@apple.com> | 2008-09-23 23:03:40 +0000 |
| commit | ba3fa6c6e15d0db6205a52f2f080bad10f093430 (patch) | |
| tree | fca177c98b3343b1e1be3f85aaca1c42e33a081b /llvm/lib/Target | |
| parent | 82fed6702b13d9d3625295494ead5211c415b3a0 (diff) | |
| download | bcm5719-llvm-ba3fa6c6e15d0db6205a52f2f080bad10f093430.tar.gz bcm5719-llvm-ba3fa6c6e15d0db6205a52f2f080bad10f093430.zip | |
s/ParameterAttributes/Attributes/g
llvm-svn: 56513
Diffstat (limited to 'llvm/lib/Target')
| -rw-r--r-- | llvm/lib/Target/CppBackend/CPPBackend.cpp | 2 | ||||
| -rw-r--r-- | llvm/lib/Target/MSIL/MSILWriter.cpp | 1 | ||||
| -rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Target/CppBackend/CPPBackend.cpp b/llvm/lib/Target/CppBackend/CPPBackend.cpp index b39d7749320..dc4e8754f7c 100644 --- a/llvm/lib/Target/CppBackend/CPPBackend.cpp +++ b/llvm/lib/Target/CppBackend/CPPBackend.cpp @@ -438,7 +438,7 @@ namespace { Out << "ParamAttrsWithIndex PAWI;"; nl(Out); for (unsigned i = 0; i < PAL.getNumSlots(); ++i) { uint16_t index = PAL.getSlot(i).Index; - ParameterAttributes attrs = PAL.getSlot(i).Attrs; + Attributes attrs = PAL.getSlot(i).Attrs; Out << "PAWI.Index = " << index << "; PAWI.Attrs = 0 "; if (attrs & ParamAttr::SExt) Out << " | ParamAttr::SExt"; diff --git a/llvm/lib/Target/MSIL/MSILWriter.cpp b/llvm/lib/Target/MSIL/MSILWriter.cpp index 35eec842a3c..79661b0882d 100644 --- a/llvm/lib/Target/MSIL/MSILWriter.cpp +++ b/llvm/lib/Target/MSIL/MSILWriter.cpp @@ -16,7 +16,6 @@ #include "llvm/DerivedTypes.h" #include "llvm/Intrinsics.h" #include "llvm/IntrinsicInst.h" -#include "llvm/ParameterAttributes.h" #include "llvm/TypeSymbolTable.h" #include "llvm/Analysis/ConstantsScanner.h" #include "llvm/Support/CallSite.h" diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index cc700eb99fa..cfffa861046 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -29,7 +29,6 @@ #include "llvm/Constants.h" #include "llvm/Function.h" #include "llvm/Intrinsics.h" -#include "llvm/ParameterAttributes.h" #include "llvm/Support/MathExtras.h" #include "llvm/Target/TargetOptions.h" #include "llvm/Support/CommandLine.h" |

