mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 19:52:54 +01:00
e3464e6bec
mnemonics from their operands instead of single spaces. This makes the assembly output a little more consistent with various other compilers (f.e. GCC), and slightly easier to read. Also, update the regression tests accordingly. llvm-svn: 40648
9 lines
216 B
LLVM
9 lines
216 B
LLVM
; RUN: llvm-as < %s | llc -march=x86-64 | grep {movq 8(%rdi), %rdx}
|
|
; RUN: llvm-as < %s | llc -march=x86-64 | grep {movq (%rdi), %rax}
|
|
|
|
define i128 @test(i128 *%P) {
|
|
%A = load i128* %P
|
|
ret i128 %A
|
|
}
|
|
|