diff options
author | Dan Gohman <gohman@apple.com> | 2010-12-14 01:33:14 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-12-14 01:33:14 +0000 |
commit | f99dbb9e77226c2035be4e7cc458f43f46a5fb70 (patch) | |
tree | d44a8f77b65eb9347ce664ed43e43fc1085dd306 | |
parent | eba9095df23cbd844eab6a204f625caa17b7b541 (diff) | |
download | bcm5719-llvm-f99dbb9e77226c2035be4e7cc458f43f46a5fb70.tar.gz bcm5719-llvm-f99dbb9e77226c2035be4e7cc458f43f46a5fb70.zip |
Generalize this test to work without instruction names.
llvm-svn: 121742
-rw-r--r-- | clang/test/CodeGen/may-alias.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/may-alias.c b/clang/test/CodeGen/may-alias.c index 66744b7ccea..f3ea792da36 100644 --- a/clang/test/CodeGen/may-alias.c +++ b/clang/test/CodeGen/may-alias.c @@ -12,8 +12,8 @@ void test0(aliasing_int *ai, int *i) *i = 1; } -// CHECK: store i32 0, i32* %tmp, !tbaa !1 -// CHECK: store i32 1, i32* %tmp1, !tbaa !3 +// CHECK: store i32 0, i32* %{{.*}}, !tbaa !1 +// CHECK: store i32 1, i32* %{{.*}}, !tbaa !3 // CHECK: !0 = metadata !{metadata !"any pointer", metadata !1} // CHECK: !1 = metadata !{metadata !"omnipotent char", metadata !2} |