[llvm-commits] [llvm] r126209 - /llvm/trunk/test/CodeGen/X86/movgs.ll
NAKAMURA Takumi
geek4civic at gmail.com
Mon Feb 21 23:21:01 PST 2011
Author: chapuni
Date: Tue Feb 22 01:21:01 2011
New Revision: 126209
URL: http://llvm.org/viewvc/llvm-project?rev=126209&view=rev
Log:
Relax expressions and add explicit triplets -linux and -win32.
Modified:
llvm/trunk/test/CodeGen/X86/movgs.ll
Modified: llvm/trunk/test/CodeGen/X86/movgs.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/movgs.ll?rev=126209&r1=126208&r2=126209&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/movgs.ll (original)
+++ llvm/trunk/test/CodeGen/X86/movgs.ll Tue Feb 22 01:21:01 2011
@@ -1,5 +1,6 @@
; RUN: llc < %s -march=x86 -mattr=sse41 | FileCheck %s --check-prefix=X32
-; RUN: llc < %s -march=x86-64 -mattr=sse41 | FileCheck %s --check-prefix=X64
+; RUN: llc < %s -mtriple=x86_64-linux -mattr=sse41 | FileCheck %s --check-prefix=X64
+; RUN: llc < %s -mtriple=x86_64-win32 -mattr=sse41 | FileCheck %s --check-prefix=X64
define i32 @test1() nounwind readonly {
entry:
@@ -30,7 +31,7 @@
; X32: calll *%gs:(%eax)
; X64: test2:
-; X64: callq *%gs:(%rdi)
+; X64: callq *%gs:([[A0:%rdi|%rcx]])
@@ -50,7 +51,7 @@
; X32: ret
; X64: pmovsxwd_1:
-; X64: pmovsxwd %gs:(%rdi), %xmm0
+; X64: pmovsxwd %gs:([[A0]]), %xmm0
; X64: ret
}
More information about the llvm-commits
mailing list