mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
986b92fd8e
llvm-svn: 216022
10 lines
182 B
LLVM
10 lines
182 B
LLVM
; RUN: llvm-as < %s | llvm-dis
|
|
; RUN: verify-uselistorder %s
|
|
|
|
define { i32 } @foob() nounwind {
|
|
ret {i32}{ i32 0 }
|
|
}
|
|
define [1 x i32] @food() nounwind {
|
|
ret [1 x i32][ i32 0 ]
|
|
}
|