diff options
Diffstat (limited to 'clang/test/CodeGen/cast-to-union.c')
-rw-r--r-- | clang/test/CodeGen/cast-to-union.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/cast-to-union.c b/clang/test/CodeGen/cast-to-union.c index 39644c0c997..9c61a840ecd 100644 --- a/clang/test/CodeGen/cast-to-union.c +++ b/clang/test/CodeGen/cast-to-union.c @@ -1,7 +1,7 @@ // RUN: clang-cc -emit-llvm < %s -o %t && // RUN: grep "store i32 351, i32*" %t && // RUN: grep "w = global %0 { i32 2, \[4 x i8\] zeroinitializer }" %t && -// RUN: grep "y = global %1 { double 7.300000e+01 }" %t +// RUN: grep "y = global %union.u { double 7.300000e+01 }" %t union u { int i; double d; }; |