Make test a bit more precise.

llvm-svn: 79073
This commit is contained in:
Eli Friedman 2009-08-15 03:35:55 +00:00
parent e1190f73a9
commit c0f6d44ef6
1 changed files with 1 additions and 1 deletions

View File

@ -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};