diff options
author | rdivacky <rdivacky@FreeBSD.org> | 2010-02-16 09:31:36 +0000 |
---|---|---|
committer | rdivacky <rdivacky@FreeBSD.org> | 2010-02-16 09:31:36 +0000 |
commit | fd035e6496665b1f1197868e21cb0a4594e8db6e (patch) | |
tree | 53010172e19c77ea447bcd89e117cda052ab52e0 /test/CodeGenCXX/member-pointers-zero-init.cpp | |
parent | 2fce988e86bc01829142e4362d4eff1af0925147 (diff) | |
download | FreeBSD-src-fd035e6496665b1f1197868e21cb0a4594e8db6e.zip FreeBSD-src-fd035e6496665b1f1197868e21cb0a4594e8db6e.tar.gz |
Update clang to r96341.
Diffstat (limited to 'test/CodeGenCXX/member-pointers-zero-init.cpp')
-rw-r--r-- | test/CodeGenCXX/member-pointers-zero-init.cpp | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/test/CodeGenCXX/member-pointers-zero-init.cpp b/test/CodeGenCXX/member-pointers-zero-init.cpp deleted file mode 100644 index 18a2ead..0000000 --- a/test/CodeGenCXX/member-pointers-zero-init.cpp +++ /dev/null @@ -1,34 +0,0 @@ -// RUN: %clang_cc1 -emit-llvm %s -o %t -triple=x86_64-apple-darwin9 - -struct A { - int i; -}; - -// RUN: grep "@a = global i64 -1" %t -int A::* a; - -// RUN: grep "@aa = global \[2 x i64\] \[i64 -1, i64 -1\]" %t -int A::* aa[2]; - -// RUN: grep "@aaa = global \[2 x \[2 x i64\]\] \[\[2 x i64\] \[i64 -1, i64 -1\], \[2 x i64\] \[i64 -1, i64 -1\]\]" %t -int A::* aaa[2][2]; - -// RUN: grep "@b = global i64 -1" %t -int A::* b = 0; - -void f() { - // RUN: grep "%.* = icmp ne i64 %.*, -1" %t | count 2 - if (a) { } - if (a != 0) { } - - // RUN: grep "%.* = icmp ne i64 -1, %.*" %t | count 1 - if (0 != a) { } - - // RUN: grep "%.* = icmp eq i64 %.*, -1" %t | count 1 - if (a == 0) { } - - // RUN: grep "%.* = icmp eq i64 -1, %.*" %t | count 1 - if (0 == a) { } - -} - |