mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
6eb7a4270b
Fixes pr14751. Patch by Kai; Thanks! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171261 91177308-0d34-0410-b5e6-96231b3b80d8
16 lines
496 B
LLVM
16 lines
496 B
LLVM
; RUN: llc -mtriple=powerpc64-unknown-linux-gnu < %s | FileCheck %s
|
|
;
|
|
; PR14751: Unsupported type in SelectionDAG::getConstantFP()
|
|
|
|
define fastcc void @_D3std4math4sqrtFNaNbNfcZc() {
|
|
entry:
|
|
br i1 undef, label %if, label %else
|
|
; CHECK: cmplwi 0, 3, 0
|
|
if: ; preds = %entry
|
|
store { ppc_fp128, ppc_fp128 } zeroinitializer, { ppc_fp128, ppc_fp128 }* undef
|
|
ret void
|
|
|
|
else: ; preds = %entry
|
|
unreachable
|
|
}
|