diff options
author | Eli Bendersky <eliben@google.com> | 2012-12-02 15:46:02 +0000 |
---|---|---|
committer | Eli Bendersky <eliben@google.com> | 2012-12-02 15:46:02 +0000 |
commit | e4693642444e8405a8f5812a3594372f7f108e9e (patch) | |
tree | 917e04c4825ce131ff686e6b9c7d5437e79d46df /test | |
parent | afcc374524c09ed9be96783fc1310fdd7455dfa9 (diff) |
Fix an invalid regex in the test
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169108 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/rdrand.ll | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/X86/rdrand.ll b/test/CodeGen/X86/rdrand.ll index e2224a6196..98f4077763 100644 --- a/test/CodeGen/X86/rdrand.ll +++ b/test/CodeGen/X86/rdrand.ll @@ -39,7 +39,7 @@ define i32 @_rdrand64_step(i64* %random_val) { %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 |