OSDN Git Service

Honour another bunch of parameter attributes in llvm2cpp
authorAnton Korobeynikov <asl@math.spbu.ru>
Sat, 29 Mar 2008 11:25:49 +0000 (11:25 +0000)
committerAnton 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

index c18a22c..f4ed2a4 100644 (file)
@@ -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);";