Duncan Sands | 95ce2c5 | 2008-05-14 09:46:01 +0000 | [diff] [blame] | 1 | // RUN: %llvmgxx -S -O1 -m32 -emit-llvm %s -o - | grep {store i32} | count 1 |
Dale Johannesen | 91ff7c0 | 2008-02-13 18:36:48 +0000 | [diff] [blame] | 2 | |
Dale Johannesen | 3910c57 | 2008-02-15 22:05:15 +0000 | [diff] [blame] | 3 | // Test that all 8 bytes of ret in check242 are copied, and only 4 bytes of |
| 4 | // ret in check93 are copied (the same LLVM struct is used for both). |
| 5 | |
Dale Johannesen | 91ff7c0 | 2008-02-13 18:36:48 +0000 | [diff] [blame] | 6 | typedef __builtin_va_list va_list; |
| 7 | typedef unsigned long size_t; |
| 8 | void *memset(void *, int, size_t); |
Dale Johannesen | 91ff7c0 | 2008-02-13 18:36:48 +0000 | [diff] [blame] | 9 | |
| 10 | struct S93 { __attribute__((aligned (8))) void * a; } ; |
| 11 | extern struct S93 s93; |
| 12 | struct S93 check93 () { |
| 13 | struct S93 ret; |
| 14 | memset (&ret, 0, sizeof (ret)); |
| 15 | ret.a = s93.a; |
| 16 | return ret; } |
| 17 | |
| 18 | struct S242 { char * a;int b[1]; } ; |
| 19 | extern struct S242 s242; |
| 20 | |
| 21 | struct S242 check242 () { |
| 22 | struct S242 ret; |
| 23 | memset (&ret, 0, sizeof (ret)); |
| 24 | ret.a = s242.a; |
| 25 | ret.b[0] = s242.b[0]; |
| 26 | return ret; } |
| 27 | |
| 28 | void check93va (int z, ...) { |
| 29 | struct S93 arg; |
| 30 | va_list ap; |
| 31 | __builtin_va_start(ap,z); |
| 32 | arg = __builtin_va_arg(ap,struct S93); |
| 33 | __builtin_va_end(ap); } |
| 34 | |
| 35 | void check242va (int z, ...) { |
| 36 | struct S242 arg; |
| 37 | va_list ap; |
| 38 | __builtin_va_start(ap,z); |
| 39 | arg = __builtin_va_arg(ap,struct S242); |
| 40 | __builtin_va_end(ap); } |
| 41 | |