mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-02 00:42:52 +01:00
093144e147
know how to handle them. This fixes test/CodeGen/Generic/asm-large-immediate.ll llvm-svn: 41388
9 lines
208 B
LLVM
9 lines
208 B
LLVM
; RUN: llvm-as < %s | llc | grep 68719476738
|
|
|
|
define void @test() {
|
|
entry:
|
|
tail call void asm sideeffect "/* result: ${0:c} */", "i,~{dirflag},~{fpsr},~{flags}"( i64 68719476738 )
|
|
ret void
|
|
}
|
|
|