mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
c33660d278
XFAILed 3 arm regressions (will file bugs) llvm-svn: 44389
10 lines
197 B
LLVM
10 lines
197 B
LLVM
; RUN: not llvm-as < %s -o /dev/null -f |& grep {Call to invalid LLVM intrinsic}
|
|
|
|
declare i32 @llvm.foobar(i32 %foo)
|
|
|
|
define i32 @test() {
|
|
%nada = call i32 @llvm.foobar(i32 0)
|
|
ret i32 %nada
|
|
}
|
|
|