summaryrefslogtreecommitdiffstats
path: root/clang/test
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-12-13 23:51:08 +0000
committerDan Gohman <gohman@apple.com>2010-12-13 23:51:08 +0000
commitc2897692c344d44c2a068b2c2228553ec0de5fab (patch)
tree8b65750654e14fed455218653ab29410e2070c27 /clang/test
parent3e5648896e87caf09026e1ed64aa55b0bfe86b66 (diff)
downloadbcm5719-llvm-c2897692c344d44c2a068b2c2228553ec0de5fab.tar.gz
bcm5719-llvm-c2897692c344d44c2a068b2c2228553ec0de5fab.zip
Implement CodeGen support for the may_alias attribute.
llvm-svn: 121734
Diffstat (limited to 'clang/test')
-rw-r--r--clang/test/CodeGen/may-alias.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/clang/test/CodeGen/may-alias.c b/clang/test/CodeGen/may-alias.c
new file mode 100644
index 00000000000..66744b7ccea
--- /dev/null
+++ b/clang/test/CodeGen/may-alias.c
@@ -0,0 +1,21 @@
+// RUN: %clang_cc1 -Werror -triple i386-unknown-unknown -emit-llvm -O1 -disable-llvm-optzns -o %t %s
+// RUN: FileCheck < %t %s
+
+// Types with the may_alias attribute should be considered equivalent
+// to char for aliasing.
+
+typedef int __attribute__((may_alias)) aliasing_int;
+
+void test0(aliasing_int *ai, int *i)
+{
+ *ai = 0;
+ *i = 1;
+}
+
+// CHECK: store i32 0, i32* %tmp, !tbaa !1
+// CHECK: store i32 1, i32* %tmp1, !tbaa !3
+
+// CHECK: !0 = metadata !{metadata !"any pointer", metadata !1}
+// CHECK: !1 = metadata !{metadata !"omnipotent char", metadata !2}
+// CHECK: !2 = metadata !{metadata !"Simple C/C++ TBAA", null}
+// CHECK: !3 = metadata !{metadata !"int", metadata !1}
OpenPOWER on IntegriCloud