You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
322 B
12 lines
322 B
; RUN: llc -verify-machineinstrs < %s -mtriple=powerpc64-unknown-linux-gnu -no-integrated-as | 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
|
|
}
|