diff options
Diffstat (limited to 'llvm/test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll')
-rw-r--r-- | llvm/test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/llvm/test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll b/llvm/test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll deleted file mode 100644 index ea869842b18..00000000000 --- a/llvm/test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll +++ /dev/null @@ -1,12 +0,0 @@ -; RUN: opt < %s -reassociate -S | FileCheck %s - -define <4 x float> @test1() { -; CHECK-LABEL: test1 -; CHECK-NEXT: %tmp1 = fsub <4 x float> zeroinitializer, zeroinitializer -; CHECK-NEXT: %tmp2 = fmul <4 x float> %tmp1, zeroinitializer -; CHECK-NEXT: ret <4 x float> %tmp2 - - %tmp1 = fsub <4 x float> zeroinitializer, zeroinitializer - %tmp2 = fmul <4 x float> zeroinitializer, %tmp1 - ret <4 x float> %tmp2 -} |