diff options
Diffstat (limited to 'llvm/test/CodeGen/X86/combine-lds.ll')
-rw-r--r-- | llvm/test/CodeGen/X86/combine-lds.ll | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/llvm/test/CodeGen/X86/combine-lds.ll b/llvm/test/CodeGen/X86/combine-lds.ll index f2c81a4959b..62f3a1b1ef9 100644 --- a/llvm/test/CodeGen/X86/combine-lds.ll +++ b/llvm/test/CodeGen/X86/combine-lds.ll @@ -1,6 +1,11 @@ -; RUN: llc < %s -mtriple=i686-- -mattr=+sse2 | grep fldl | count 1 +; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py +; RUN: llc < %s -mtriple=i686-- -mattr=+sse2 | FileCheck %s define double @doload64(i64 %x) nounwind { +; CHECK-LABEL: doload64: +; CHECK: # %bb.0: +; CHECK-NEXT: fldl {{[0-9]+}}(%esp) +; CHECK-NEXT: retl %tmp717 = bitcast i64 %x to double ret double %tmp717 } |