1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/CodeGen/PowerPC/in-asm-f64-reg.ll
Rafael Espindola 70826f068e Simplify the testcase a bit.
I checked that it would still crash llc before the corresponding fix.

llvm-svn: 170709
2012-12-20 17:47:27 +00:00

12 lines
282 B
LLVM

; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu | FileCheck %s
define void @f() {
; CHECK: @f
entry:
%0 = tail call double* asm sideeffect "qvstfdux $2,$0,$1", "=b,{r7},{f11},0,~{memory}"(i32 64, double undef, double* undef)
ret void
; CHECK: qvstfdux 11,{{[0-9]+}},7
}