aboutsummaryrefslogtreecommitdiffstats
path: root/test/Feature/paramattrs.ll
diff options
context:
space:
mode:
authorZhou Sheng <zhousheng00@gmail.com>2007-06-05 05:28:26 +0000
committerZhou Sheng <zhousheng00@gmail.com>2007-06-05 05:28:26 +0000
commitfebca3499e5624361142dda2cb3c2ea806bfcdb6 (patch)
tree310a377dac8a301e5e87a1cf852c71b416d56a19 /test/Feature/paramattrs.ll
parent45beb482c4f7c30f4d0bce962e4491ba2abc2e78 (diff)
downloadexternal_llvm-febca3499e5624361142dda2cb3c2ea806bfcdb6.zip
external_llvm-febca3499e5624361142dda2cb3c2ea806bfcdb6.tar.gz
external_llvm-febca3499e5624361142dda2cb3c2ea806bfcdb6.tar.bz2
Commit first round work of PR1373. "noalias" is now fully supported in
VMCore, BitCode, and Assembly. Documentation and test case paramattrs.ll updated also. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@37432 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Feature/paramattrs.ll')
-rw-r--r--test/Feature/paramattrs.ll2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/Feature/paramattrs.ll b/test/Feature/paramattrs.ll
index 8411678..01dc2fa 100644
--- a/test/Feature/paramattrs.ll
+++ b/test/Feature/paramattrs.ll
@@ -8,6 +8,8 @@
declare i16 @"test"(i16 sext %arg) sext
declare i8 @"test2" (i16 zext %a2) zext
+declare i32 @"test3"(i32* noalias %p)
+
declare void @exit(i32) noreturn nounwind
define i32 @main(i32 %argc, i8 **%argv) nounwind inreg {