summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/select.ll
diff options
context:
space:
mode:
authorManman Ren <mren@apple.com>2012-07-25 18:28:13 +0000
committerManman Ren <mren@apple.com>2012-07-25 18:28:13 +0000
commitd68e8cda245269c032a692873dc8eb163fa6ef00 (patch)
treed1f0c6987fb904ed8cb31ca343ae71e48571363d /test/CodeGen/X86/select.ll
parent9f14ed1c60a1f6e8ab434a85d2ba9d82bc125cf4 (diff)
downloadllvm-d68e8cda245269c032a692873dc8eb163fa6ef00.tar.gz
llvm-d68e8cda245269c032a692873dc8eb163fa6ef00.tar.bz2
llvm-d68e8cda245269c032a692873dc8eb163fa6ef00.tar.xz
Disable rematerialization in TwoAddressInstructionPass.
It is redundant; RegisterCoalescer will do the remat if it can't eliminate the copy. Collected instruction counts before and after this. A few extra instructions are generated due to spilling but it is normal to see these kinds of changes with almost any small codegen change, according to Jakob. This also fixed rdar://11830760 where xor is expected instead of movi0. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160749 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/select.ll')
-rw-r--r--test/CodeGen/X86/select.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/select.ll b/test/CodeGen/X86/select.ll
index c8d9345c40..ac9502873a 100644
--- a/test/CodeGen/X86/select.ll
+++ b/test/CodeGen/X86/select.ll
@@ -189,8 +189,8 @@ entry:
%call = tail call noalias i8* @_Znam(i64 %D) nounwind noredzone
ret i8* %call
; CHECK: test12:
-; CHECK: mulq
; CHECK: movq $-1, %rdi
+; CHECK: mulq
; CHECK: cmovnoq %rax, %rdi
; CHECK: jmp __Znam
}