mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 16:30:53 -05:00
4 lines
235 B
C
4 lines
235 B
C
// RUN: %clang_cc1 -emit-llvm %s -o - -triple i686-pc-linux-gnu | grep "bitcast (%0\* @r to %union.x\*), \[4 x i8\] undef"
|
|
|
|
// Make sure we generate something sane instead of a ptrtoint
|
|
union x {long long b;union x* a;} r = {.a = &r};
|