forked from OSchip/llvm-project
[X86] Remove unnecessary AddedComplexity line. NFC
The use of the or_is_add predicate already gives enough of a complexity boost to get the patterns ordered properly. llvm-svn: 339507
This commit is contained in:
parent
612c524a90
commit
ed8a114c86
|
@ -1282,7 +1282,7 @@ def or_is_add : PatFrag<(ops node:$lhs, node:$rhs), (or node:$lhs, node:$rhs),[{
|
|||
|
||||
// (or x1, x2) -> (add x1, x2) if two operands are known not to share bits.
|
||||
// Try this before the selecting to OR.
|
||||
let AddedComplexity = 5, SchedRW = [WriteALU] in {
|
||||
let SchedRW = [WriteALU] in {
|
||||
|
||||
let isConvertibleToThreeAddress = 1,
|
||||
Constraints = "$src1 = $dst", Defs = [EFLAGS] in {
|
||||
|
|
Loading…
Reference in New Issue