aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/union-init2.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/union-init2.c')
-rw-r--r--test/CodeGen/union-init2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/union-init2.c b/test/CodeGen/union-init2.c
index 184d75f47156..e782425cf2b1 100644
--- a/test/CodeGen/union-init2.c
+++ b/test/CodeGen/union-init2.c
@@ -1,4 +1,4 @@
-// RUN: clang-cc -emit-llvm %s -o - -triple i686-pc-linux-gnu | grep "bitcast (%0\* @r to %union.x\*), \[4 x i8\] zeroinitializer"
+// RUN: clang-cc -emit-llvm %s -o - -triple i686-pc-linux-gnu | grep "bitcast (%0\* @r to %union.x\*), \[4 x i8\] undef"
// Make sure we generate something sane instead of a ptrtoint
union x {long long b;union x* a;} r = {.a = &r};