summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2014-04-21 11:01:46 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2014-04-21 11:01:46 +0000
commit2b3433557f578853cee3b0b1335c9c304e33b3de (patch)
tree3130918da244ce53a53b5487faf9837f2226f00c
parent84c70a70baa2c82b8768d3eecf37a61163cf8593 (diff)
downloadllvm-2b3433557f578853cee3b0b1335c9c304e33b3de.tar.gz
llvm-2b3433557f578853cee3b0b1335c9c304e33b3de.tar.bz2
llvm-2b3433557f578853cee3b0b1335c9c304e33b3de.tar.xz
llvm/test/CodeGen/X86/bmi.ll: Relax expressions for targeting win32.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@206743 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/X86/bmi.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/X86/bmi.ll b/test/CodeGen/X86/bmi.ll
index 1dc2edb7ea..c04fe9b5cf 100644
--- a/test/CodeGen/X86/bmi.ll
+++ b/test/CodeGen/X86/bmi.ll
@@ -222,7 +222,7 @@ entry:
ret i32 %and
; CHECK-LABEL: bzhi32_constant_mask:
; CHECK: movb $30, %al
-; CHECK: bzhil %eax, %edi, %eax
+; CHECK: bzhil %eax, %e[[ARG1:di|cx]], %eax
}
define i64 @bzhi64_constant_mask(i64 %x) #0 {
@@ -231,7 +231,7 @@ entry:
ret i64 %and
; CHECK-LABEL: bzhi64_constant_mask:
; CHECK: movb $62, %al
-; CHECK: bzhiq %rax, %rdi, %rax
+; CHECK: bzhiq %rax, %r[[ARG1]], %rax
}
define i32 @blsi32(i32 %x) nounwind readnone {