You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.205
Former-commit-id: 7f59f7e792705db773f1caecdaa823092f4e2927
This commit is contained in:
parent
5cd5df71cc
commit
8e12397d70
12
external/llvm/test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll
vendored
Normal file
12
external/llvm/test/Transforms/Reassociate/2006-04-27-ReassociateVector.ll
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
; 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
|
||||
}
|
Reference in New Issue
Block a user