mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-06 05:06:45 +00:00
ffc7d3b0ad
I checked that it would still crash llc before the corresponding fix. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170709 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
282 B
LLVM
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
|
|
}
|