[llvm-commits] CVS: llvm/tools/llvm2cpp/CppWriter.cpp

Zhou Sheng zhousheng00 at gmail.com
Mon Jun 4 22:29:01 PDT 2007



Changes in directory llvm/tools/llvm2cpp:

CppWriter.cpp updated: 1.48 -> 1.49
---
Log message:

Commit first round work of PR1373: http://llvm.org/PR1373 . "noalias" is now fully supported in 
VMCore, BitCode, and Assembly. Documentation and test case paramattrs.ll
updated also.


---
Diffs of the changes:  (+2 -0)

 CppWriter.cpp |    2 ++
 1 files changed, 2 insertions(+)


Index: llvm/tools/llvm2cpp/CppWriter.cpp
diff -u llvm/tools/llvm2cpp/CppWriter.cpp:1.48 llvm/tools/llvm2cpp/CppWriter.cpp:1.49
--- llvm/tools/llvm2cpp/CppWriter.cpp:1.48	Sun Apr 22 00:46:44 2007
+++ llvm/tools/llvm2cpp/CppWriter.cpp	Tue Jun  5 00:28:26 2007
@@ -473,6 +473,8 @@
             Out << " | ParamAttr::SExt";
           if (attrs & ParamAttr::ZExt)
             Out << " | ParamAttr::ZExt";
+          if (attrs & ParamAttr::NoAlias)
+            Out << " | ParamAttr::NoAlias";
           if (attrs & ParamAttr::StructRet)
             Out << " | ParamAttr::StructRet";
           if (attrs & ParamAttr::InReg)






More information about the llvm-commits mailing list