mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
7089d4d507
llvm-svn: 128620
16 lines
216 B
C
16 lines
216 B
C
// RUN: %llvmgcc -S -o - -m32 -Os %s | FileCheck %s
|
|
// PR9571
|
|
|
|
struct t {
|
|
int x;
|
|
};
|
|
|
|
extern struct t *cfun;
|
|
|
|
int f(void) {
|
|
if (!(cfun + 0))
|
|
// CHECK: icmp eq %struct.t* %0, null
|
|
return 0;
|
|
return cfun->x;
|
|
}
|