Home | History | Annotate | Download | only in X86
      1 ; RUN: llc < %s -march=x86 -mattr=-sse2,-sse3 | FileCheck %s
      2 
      3 ; CHECK: fchs
      4 
      5 
      6 define double @T() {
      7 	ret double -1.0   ;; codegen as fld1/fchs, not as a load from cst pool
      8 }
      9