diff options
author | Eric Christopher <echristo@apple.com> | 2011-07-26 22:42:01 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-07-26 22:42:01 +0000 |
commit | f883941903fe8e820d67e466e5b0c3e0b80f8a9b (patch) | |
tree | 61127d3763fc6997dc3707e36b1e49bdf4efdead /clang/test/CodeGen/2008-01-07-UnusualIntSize.c | |
parent | 6868b35f01592bb1a818736d5574d85afd4f543e (diff) | |
download | bcm5719-llvm-f883941903fe8e820d67e466e5b0c3e0b80f8a9b.tar.gz bcm5719-llvm-f883941903fe8e820d67e466e5b0c3e0b80f8a9b.zip |
Attempt to rewrite the matching for this test to pacify the windows
build bots.
llvm-svn: 136166
Diffstat (limited to 'clang/test/CodeGen/2008-01-07-UnusualIntSize.c')
-rw-r--r-- | clang/test/CodeGen/2008-01-07-UnusualIntSize.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang/test/CodeGen/2008-01-07-UnusualIntSize.c b/clang/test/CodeGen/2008-01-07-UnusualIntSize.c index 2842830c19b..bf0ca5575a6 100644 --- a/clang/test/CodeGen/2008-01-07-UnusualIntSize.c +++ b/clang/test/CodeGen/2008-01-07-UnusualIntSize.c @@ -8,7 +8,8 @@ struct s { // This should have %0 and %1 truncated to 33 bits before any operation. // This can be done using i33 or an explicit and. _Bool test(void) { - // CHECK: and i64 %0, 8589934591 - // CHECK: and i64 %1, 8589934591 + // CHECK: and i64 %[[TMP1:[0-9]+]], 8589934591 + // CHECK-NOT: and i64 [[TMP1]], 8589934591 + // CHECK: and i64 %{{[0-9]}}, 8589934591 return a.u33 + b.u33 != 0; } |