projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e818717
)
Honour another bunch of parameter attributes in llvm2cpp
author
Anton Korobeynikov
<asl@math.spbu.ru>
Sat, 29 Mar 2008 11:25:49 +0000
(11:25 +0000)
committer
Anton Korobeynikov
<asl@math.spbu.ru>
Sat, 29 Mar 2008 11:25:49 +0000
(11:25 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48942
91177308
-0d34-0410-b5e6-
96231b3b80d8
tools/llvm2cpp/CppWriter.cpp
patch
|
blob
|
history
diff --git
a/tools/llvm2cpp/CppWriter.cpp
b/tools/llvm2cpp/CppWriter.cpp
index c18a22cbbb549cadd996b6baedea3d319eec37eb..f4ed2a460a5fa80ef50deca1956d7e837d8b9841 100644
(file)
--- a/
tools/llvm2cpp/CppWriter.cpp
+++ b/
tools/llvm2cpp/CppWriter.cpp
@@
-462,6
+462,14
@@
CppWriter::printParamAttrs(const PAListPtr &PAL, const std::string &name) {
Out << " | ParamAttr::NoUnwind";
if (attrs & ParamAttr::ByVal)
Out << " | ParamAttr::ByVal";
+ if (attrs & ParamAttr::NoAlias)
+ Out << " | ParamAttr::NoAlias";
+ if (attrs & ParamAttr::Nest)
+ Out << " | ParamAttr::Nest";
+ if (attrs & ParamAttr::ReadNone)
+ Out << " | ParamAttr::ReadNone";
+ if (attrs & ParamAttr::ReadOnly)
+ Out << " | ParamAttr::ReadOnly";
Out << ";";
nl(Out);
Out << "Attrs.push_back(PAWI);";