summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Liao <michael.liao@intel.com>2012-11-12 22:33:18 +0000
committerMichael Liao <michael.liao@intel.com>2012-11-12 22:33:18 +0000
commit01c6de341cdd43292243b790a67d4753e40a5360 (patch)
treea75783702656f50fa062985d3949b835cc11298e /test
parentf5b6dcd3929fe04c81aca1d69f69bbc530de148f (diff)
downloadllvm-01c6de341cdd43292243b790a67d4753e40a5360.tar.gz
llvm-01c6de341cdd43292243b790a67d4753e40a5360.tar.bz2
llvm-01c6de341cdd43292243b790a67d4753e40a5360.tar.xz
Fix test case added in patch fixing PR14314
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167769 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/X86/pr14314.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/X86/pr14314.ll b/test/CodeGen/X86/pr14314.ll
index 5388a4b01b..0832702244 100644
--- a/test/CodeGen/X86/pr14314.ll
+++ b/test/CodeGen/X86/pr14314.ll
@@ -5,9 +5,9 @@ entry:
%0 = atomicrmw sub i64* %a, i64 %b seq_cst
ret i64 %0
; CHECK: atomicSub
-; movl %eax, %ebx
-; subl {{%[a-z]+}}, %ebx
-; movl %edx, %ecx
-; sbbl {{%[a-z]+}}, %ecx
+; CHECK: movl %eax, %ebx
+; CHECK: subl {{%[a-z]+}}, %ebx
+; CHECK: movl %edx, %ecx
+; CHECK: sbbl {{%[a-z]+}}, %ecx
; CHECK: ret
}