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 | 22c3979fcaa7ff19c44253eb9b0b0160dfef0aa4 (patch) | |
tree | 31721486d6cd9a298f847f21e42c5128e758b66d /tools/llvm2cpp/CppWriter.cpp | |
parent | e5079051b968a6a55a10fbccf2511130742901db (diff) |
Split ParameterAttributes.h, putting the complicated
stuff into ParamAttrsList.h. Per feedback from
ParamAttrs changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47504 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvm2cpp/CppWriter.cpp')
-rw-r--r-- | tools/llvm2cpp/CppWriter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/llvm2cpp/CppWriter.cpp b/tools/llvm2cpp/CppWriter.cpp index 81911fd297..45810c36d0 100644 --- a/tools/llvm2cpp/CppWriter.cpp +++ b/tools/llvm2cpp/CppWriter.cpp @@ -18,7 +18,7 @@ #include "llvm/InlineAsm.h" #include "llvm/Instruction.h" #include "llvm/Instructions.h" -#include "llvm/ParameterAttributes.h" +#include "llvm/ParamAttrsList.h" #include "llvm/Module.h" #include "llvm/TypeSymbolTable.h" #include "llvm/ADT/StringExtras.h" @@ -1748,7 +1748,7 @@ void CppWriter::printProgram( Out << "#include <llvm/BasicBlock.h>\n"; Out << "#include <llvm/Instructions.h>\n"; Out << "#include <llvm/InlineAsm.h>\n"; - Out << "#include <llvm/ParameterAttributes.h>\n"; + Out << "#include <llvm/ParamAttrsList.h>\n"; Out << "#include <llvm/Support/MathExtras.h>\n"; Out << "#include <llvm/Pass.h>\n"; Out << "#include <llvm/PassManager.h>\n"; |