blob: b167f8026af4de58178ad85984bbeb8250794f0e [file] [log] [blame]
Eli Friedmanc0879bb2009-08-01 23:11:24 +00001// RUN: clang-cc -emit-llvm %s -o - | not grep ptrtoint
2
3// Make sure we generate something sane instead of a ptrtoint
4union x {long long b;union x* a;} r = {.a = &r};