diff options
Diffstat (limited to 'test/CodeGen/types.c')
-rw-r--r-- | test/CodeGen/types.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/CodeGen/types.c b/test/CodeGen/types.c new file mode 100644 index 0000000000..01286e8962 --- /dev/null +++ b/test/CodeGen/types.c @@ -0,0 +1,16 @@ +// RUN: clang -emit-llvm %s + +struct FileName { + struct FileName *next; +} *fnhead; + + +struct ieeeExternal { + struct ieeeExternal *next; +} *exthead; + + +void f() +{ + struct ieeeExternal *exttmp = exthead; +} |