mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
3f38cefda5
There are about 3 underlying bugs causing the tests to fail. On top of that, some tests just we're 'generic' enough. i.e. 32-bit registers. llvm-svn: 294434
15 lines
329 B
LLVM
15 lines
329 B
LLVM
; RUN: llc -no-integrated-as < %s
|
|
; XFAIL: sparc-sun-solaris2
|
|
; PR1308
|
|
; PR1557
|
|
|
|
; Bug: PR31336
|
|
; XFAIL: avr
|
|
|
|
define i32 @stuff(i32, ...) {
|
|
%foo = alloca i8*
|
|
%bar = alloca i32*
|
|
%A = call i32 asm sideeffect "inline asm $0 $2 $3 $4", "=r,0,i,m,m"( i32 0, i32 1, i8** %foo, i32** %bar )
|
|
ret i32 %A
|
|
}
|