diff options
author | Chris Lattner <sabre@nondot.org> | 2002-08-02 16:26:08 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-08-02 16:26:08 +0000 |
commit | 20f15aa8fbde3acf224ec72f8c0e71e5c64b591b (patch) | |
tree | 5c641671b0471a2979a2eea3425ff1b8fa9f501c | |
parent | 50d29c92782e486abd0d1f913bfdcd99eb9bfd14 (diff) | |
download | external_llvm-20f15aa8fbde3acf224ec72f8c0e71e5c64b591b.zip external_llvm-20f15aa8fbde3acf224ec72f8c0e71e5c64b591b.tar.gz external_llvm-20f15aa8fbde3acf224ec72f8c0e71e5c64b591b.tar.bz2 |
New test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3207 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CFrontend/2002-08-02-UnionTest.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/CFrontend/2002-08-02-UnionTest.c b/test/CFrontend/2002-08-02-UnionTest.c new file mode 100644 index 0000000..25bf157 --- /dev/null +++ b/test/CFrontend/2002-08-02-UnionTest.c @@ -0,0 +1,17 @@ +/* In this testcase, the return value of foo() is being promotedto a register + * which breaks stuff + */ +#include <stdio.h> + +union X { char X; void *B; int a, b, c, d;}; + +union X foo() { + union X Global; + Global.B = (void*)123; /* Interesting part */ + return Global; +} + +void main() { + union X test = foo(); + printf("0x%p", test.B); +} |