1 // RUN: clang-cc -emit-llvm %s -o - | not grep ptrtoint
2 
3 // Make sure we generate something sane instead of a ptrtoint
4 union x {long long b;union x* a;} r = {.a = &r};
5