mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
68f8fbdac4
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
15 lines
250 B
LLVM
15 lines
250 B
LLVM
; 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 ]
|
|
}
|