[llvm-commits] CVS: llvm/include/llvm/ParameterAttributes.h

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



Changes in directory llvm/include/llvm:

ParameterAttributes.h updated: 1.12 -> 1.13
---
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 -1)

 ParameterAttributes.h |    3 ++-
 1 files changed, 2 insertions(+), 1 deletion(-)


Index: llvm/include/llvm/ParameterAttributes.h
diff -u llvm/include/llvm/ParameterAttributes.h:1.12 llvm/include/llvm/ParameterAttributes.h:1.13
--- llvm/include/llvm/ParameterAttributes.h:1.12	Thu May  3 22:13:39 2007
+++ llvm/include/llvm/ParameterAttributes.h	Tue Jun  5 00:28:25 2007
@@ -35,7 +35,8 @@
   NoReturn   = 1 << 2, ///< mark the function as not returning
   InReg      = 1 << 3, ///< force argument to be passed in register
   StructRet  = 1 << 4, ///< hidden pointer to structure to return
-  NoUnwind   = 1 << 5  ///< Function doesn't unwind stack
+  NoUnwind   = 1 << 5, ///< Function doesn't unwind stack
+  NoAlias    = 1 << 6  ///< Considered to not alias after call.
 };
 
 }






More information about the llvm-commits mailing list