mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-25 13:27:52 +00:00
378bc328f0
be deleted. This will be reapplied as soon as possible and before the 3.6 branch date at any rate. Approved by Jim Grosbach, Lang Hames, Rafael Espindola. This reverts commits r215111, 215115, 215116, 215117, 215136. llvm-svn: 215154
13 lines
153 B
LLVM
13 lines
153 B
LLVM
; RUN: %lli %s > /dev/null
|
|
; XFAIL: arm
|
|
|
|
define i32 @bar() {
|
|
ret i32 0
|
|
}
|
|
|
|
define i32 @main() {
|
|
%r = call i32 @bar( ) ; <i32> [#uses=1]
|
|
ret i32 %r
|
|
}
|
|
|