[llvm-commits] [llvm] r169108 - /llvm/trunk/test/CodeGen/X86/rdrand.ll
Eli Bendersky
eliben at google.com
Sun Dec 2 07:46:02 PST 2012
Author: eliben
Date: Sun Dec 2 09:46:02 2012
New Revision: 169108
URL: http://llvm.org/viewvc/llvm-project?rev=169108&view=rev
Log:
Fix an invalid regex in the test
Modified:
llvm/trunk/test/CodeGen/X86/rdrand.ll
Modified: llvm/trunk/test/CodeGen/X86/rdrand.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/rdrand.ll?rev=169108&r1=169107&r2=169108&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/rdrand.ll (original)
+++ llvm/trunk/test/CodeGen/X86/rdrand.ll Sun Dec 2 09:46:02 2012
@@ -39,7 +39,7 @@
%isvalid = extractvalue {i64, i32} %call, 1
ret i32 %isvalid
; CHECK: _rdrand64_step:
-; CHECK: rdrandq %r[[T1:[[a-z]+]]
+; CHECK: rdrandq %r[[T1:[a-z]+]]
; CHECK: movq %r[[T1]], (%r[[A0]])
; CHECK: movl $1, %eax
; CHECK: cmovael %e[[T1]], %eax
More information about the llvm-commits
mailing list