diff options
Diffstat (limited to 'clang/test/CodeGen/bitfield-promote.c')
-rw-r--r-- | clang/test/CodeGen/bitfield-promote.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/test/CodeGen/bitfield-promote.c b/clang/test/CodeGen/bitfield-promote.c index 19d550f2f86..1290a1ecd33 100644 --- a/clang/test/CodeGen/bitfield-promote.c +++ b/clang/test/CodeGen/bitfield-promote.c @@ -1,7 +1,6 @@ // RUN: clang -O3 -emit-llvm -S -o %t %s // RUN: grep 'ret i64 4294967292' %t | count 2 // RUN: grep 'ret i64 -4' %t | count 1 -// RUN: true long long f0(void) { struct { unsigned f0 : 32; } x = { 18 }; |