blob: 184d75f47156ab78914897e8e9c8bb1b563b6c5a [file] [log] [blame]
Eli Friedmancdcea872009-08-15 03:35:55 +00001// RUN: clang-cc -emit-llvm %s -o - -triple i686-pc-linux-gnu | grep "bitcast (%0\* @r to %union.x\*), \[4 x i8\] zeroinitializer"
Eli Friedmanc0879bb2009-08-01 23:11:24 +00002
3// Make sure we generate something sane instead of a ptrtoint
4union x {long long b;union x* a;} r = {.a = &r};