diff options
Diffstat (limited to 'test/CodeGen/arm-arguments.c')
-rw-r--r-- | test/CodeGen/arm-arguments.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/arm-arguments.c b/test/CodeGen/arm-arguments.c index 3ae3b8e..4686d4a 100644 --- a/test/CodeGen/arm-arguments.c +++ b/test/CodeGen/arm-arguments.c @@ -153,3 +153,15 @@ struct s29 f29() {} // AAPCS: define arm_aapcscc void @f30({{.*}} noalias sret struct s30 { _Complex int f0; }; struct s30 f30() {} + +// PR11905 +struct s31 { char x; }; +void f31(struct s31 s) { } +// AAPCS: @f31([1 x i32] %s.coerce) +// AAPCS: %s = alloca %struct.s31, align 4 +// AAPCS: alloca [1 x i32] +// AAPCS: store [1 x i32] %s.coerce, [1 x i32]* +// APCS-GNU: @f31([1 x i32] %s.coerce) +// APCS-GNU: %s = alloca %struct.s31, align 4 +// APCS-GNU: alloca [1 x i32] +// APCS-GNU: store [1 x i32] %s.coerce, [1 x i32]* |