From 624dc1d4abf26a3ccd474f85a39058a99a9053ca Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Sat, 23 Apr 2011 00:15:45 +0000 Subject: [PATCH] test/CodeGen/X86/shrink-compare.ll: Relax expressions for Win64. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130039 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/X86/shrink-compare.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CodeGen/X86/shrink-compare.ll b/test/CodeGen/X86/shrink-compare.ll index 7eaf9411c1b..8d4b07f9d9b 100644 --- a/test/CodeGen/X86/shrink-compare.ll +++ b/test/CodeGen/X86/shrink-compare.ll @@ -16,7 +16,7 @@ if.then: if.end: ret void ; CHECK: test1: -; CHECK: cmpb $47, (%rdi) +; CHECK: cmpb $47, (%{{rdi|rcx}}) } define void @test2(i32 %X) nounwind { @@ -32,5 +32,5 @@ if.then: if.end: ret void ; CHECK: test2: -; CHECK: cmpb $47, %dil +; CHECK: cmpb $47, %{{dil|cl}} }