diff options
author | Eli Friedman <eli.friedman@gmail.com> | 2009-08-15 03:35:55 +0000 |
---|---|---|
committer | Eli Friedman <eli.friedman@gmail.com> | 2009-08-15 03:35:55 +0000 |
commit | c0f6d44ef666a70499d2ca882b665d5ffd06ddef (patch) | |
tree | 8d7bf1b31e852f617595d64673789886cfe3331e /clang/test/CodeGen/union-init2.c | |
parent | e1190f73a9f996e1d8594c4b2aead45f54ea8f97 (diff) | |
download | bcm5719-llvm-c0f6d44ef666a70499d2ca882b665d5ffd06ddef.tar.gz bcm5719-llvm-c0f6d44ef666a70499d2ca882b665d5ffd06ddef.zip |
Make test a bit more precise.
llvm-svn: 79073
Diffstat (limited to 'clang/test/CodeGen/union-init2.c')
-rw-r--r-- | clang/test/CodeGen/union-init2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/union-init2.c b/clang/test/CodeGen/union-init2.c index b167f8026af..184d75f4715 100644 --- a/clang/test/CodeGen/union-init2.c +++ b/clang/test/CodeGen/union-init2.c @@ -1,4 +1,4 @@ -// RUN: clang-cc -emit-llvm %s -o - | not grep ptrtoint +// RUN: clang-cc -emit-llvm %s -o - -triple i686-pc-linux-gnu | grep "bitcast (%0\* @r to %union.x\*), \[4 x i8\] zeroinitializer" // Make sure we generate something sane instead of a ptrtoint union x {long long b;union x* a;} r = {.a = &r}; |