[llvm-commits] [llvm] r126204 - /llvm/trunk/test/CodeGen/X86/i128-ret.ll

NAKAMURA Takumi geek4civic at gmail.com
Mon Feb 21 23:20:18 PST 2011


Author: chapuni
Date: Tue Feb 22 01:20:18 2011
New Revision: 126204

URL: http://llvm.org/viewvc/llvm-project?rev=126204&view=rev
Log:
Relax expressions and add explicit triplets -linux and -win32.

Modified:
    llvm/trunk/test/CodeGen/X86/i128-ret.ll

Modified: llvm/trunk/test/CodeGen/X86/i128-ret.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/i128-ret.ll?rev=126204&r1=126203&r2=126204&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/i128-ret.ll (original)
+++ llvm/trunk/test/CodeGen/X86/i128-ret.ll Tue Feb 22 01:20:18 2011
@@ -1,5 +1,7 @@
-; RUN: llc < %s -march=x86-64 | grep {movq	8(%rdi), %rdx}
-; RUN: llc < %s -march=x86-64 | grep {movq	(%rdi), %rax}
+; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
+; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s
+; CHECK: movq ([[A0:%rdi|%rcx]]), %rax
+; CHECK: movq 8([[A0]]), %rdx
 
 define i128 @test(i128 *%P) {
         %A = load i128* %P





More information about the llvm-commits mailing list