projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fix vbroadcast matching logic to early unmatch if the node doesn't have
[oota-llvm.git]
/
test
/
CodeGen
/
X86
/
sub.ll
1
; RUN: llc -march=x86 < %s | FileCheck %s
2
3
define i32 @test1(i32 %x) {
4
%xor = xor i32 %x, 31
5
%sub = sub i32 32, %xor
6
ret i32 %sub
7
; CHECK: test1:
8
; CHECK: xorl $-32
9
; CHECK-NEXT: addl $33
10
; CHECK-NEXT: ret
11
}