1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-17 23:31:05 +00:00
2013-05-01 05:34:30 +00:00

9 lines
173 B
LLVM

; RUN: llc < %s -march=x86 -mattr=-sse2,-sse3 | FileCheck %s
; CHECK: fchs
define double @T() {
ret double -1.0 ;; codegen as fld1/fchs, not as a load from cst pool
}