diff options
author | Dan Gohman <gohman@apple.com> | 2008-06-09 21:26:13 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-06-09 21:26:13 +0000 |
commit | 27ae953278dba7074903d71442c34f57b9a551f6 (patch) | |
tree | 9fc72231bf7a164da30a3a6e5c794ef3e8ed0267 /llvm/test/Assembler/aggregate-return-single-value.ll | |
parent | 6001b91d8efa39c6d4d95fad39707918d162ffa2 (diff) | |
download | bcm5719-llvm-27ae953278dba7074903d71442c34f57b9a551f6.tar.gz bcm5719-llvm-27ae953278dba7074903d71442c34f57b9a551f6.zip |
Re-apply 52002, allowing the verifier to accept non-MRV struct return
types on functions, with adjustments so that it accepts both
new-style aggregate returns and old-style MRV returns, including those
with only a single member.
llvm-svn: 52157
Diffstat (limited to 'llvm/test/Assembler/aggregate-return-single-value.ll')
-rw-r--r-- | llvm/test/Assembler/aggregate-return-single-value.ll | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/llvm/test/Assembler/aggregate-return-single-value.ll b/llvm/test/Assembler/aggregate-return-single-value.ll new file mode 100644 index 00000000000..02fb59f8a0a --- /dev/null +++ b/llvm/test/Assembler/aggregate-return-single-value.ll @@ -0,0 +1,14 @@ +; RUN: llvm-as < %s | llvm-dis + +define { i32 } @fooa() nounwind { + ret i32 0 +} +define { i32 } @foob() nounwind { + ret {i32}{ i32 0 } +} +define [1 x i32] @fooc() nounwind { + ret i32 0 +} +define [1 x i32] @food() nounwind { + ret [1 x i32][ i32 0 ] +} |