diff options
author | Dale Johannesen <dalej@apple.com> | 2008-02-22 22:17:59 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-02-22 22:17:59 +0000 |
commit | 09f410b6d7717032cc0b2e5adf9aafe05f703df8 (patch) | |
tree | 8a0ace253aa793746625eea00d9d213315a606c4 /llvm/lib/Bitcode | |
parent | 60c140433b255c53fd69f73c4517e6bf2e769959 (diff) | |
download | bcm5719-llvm-09f410b6d7717032cc0b2e5adf9aafe05f703df8.tar.gz bcm5719-llvm-09f410b6d7717032cc0b2e5adf9aafe05f703df8.zip |
Split ParameterAttributes.h, putting the complicated
stuff into ParamAttrsList.h. Per feedback from
ParamAttrs changes.
llvm-svn: 47504
Diffstat (limited to 'llvm/lib/Bitcode')
-rw-r--r-- | llvm/lib/Bitcode/Reader/BitcodeReader.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Bitcode/Writer/BitcodeWriter.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp index 24bf978a2b0..ebfca09c491 100644 --- a/llvm/lib/Bitcode/Reader/BitcodeReader.cpp +++ b/llvm/lib/Bitcode/Reader/BitcodeReader.cpp @@ -18,7 +18,7 @@ #include "llvm/InlineAsm.h" #include "llvm/Instructions.h" #include "llvm/Module.h" -#include "llvm/ParameterAttributes.h" +#include "llvm/ParamAttrsList.h" #include "llvm/AutoUpgrade.h" #include "llvm/ADT/SmallString.h" #include "llvm/Support/MathExtras.h" diff --git a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp index 306433b1b52..9b2b93cfcea 100644 --- a/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp +++ b/llvm/lib/Bitcode/Writer/BitcodeWriter.cpp @@ -20,7 +20,7 @@ #include "llvm/InlineAsm.h" #include "llvm/Instructions.h" #include "llvm/Module.h" -#include "llvm/ParameterAttributes.h" +#include "llvm/ParamAttrsList.h" #include "llvm/TypeSymbolTable.h" #include "llvm/ValueSymbolTable.h" #include "llvm/Support/MathExtras.h" |