mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-04-18 06:10:37 +00:00
9 lines
163 B
C
9 lines
163 B
C
// RUN: %clang_cc1 -emit-llvm %s -o -
|
|
// PR1744
|
|
typedef struct foo { int x; char *p; } FOO;
|
|
extern FOO yy[];
|
|
|
|
int *y = &((yy + 1)->x);
|
|
void *z = &((yy + 1)->x);
|
|
|