[llvm-commits] [llvm] r140107 - in /llvm/trunk/test/CodeGen/X86: 2006-05-11-InstrSched.ll 2009-06-05-ScalarToVectorByteMMX.ll movgs.ll v2f32.ll vec_set-C.ll

Eli Friedman eli.friedman at gmail.com
Mon Sep 19 17:30:33 PDT 2011


On Mon, Sep 19, 2011 at 5:08 PM, Bruno Cardoso Lopes
<bruno.cardoso at gmail.com> wrote:
> Author: bruno
> Date: Mon Sep 19 19:08:12 2011
> New Revision: 140107
>
> URL: http://llvm.org/viewvc/llvm-project?rev=140107&view=rev
> Log:
> Attempt to fix -mtriple=i686-{cygwin|mingw|win32} regressions. Nakamura,
> if this doesn't work, please provide more details.

I think there's a real regression here... I'm pretty sure you "broke"
the fix in r100559 (see also
http://llvm.org/bugs/show_bug.cgi?id=6696).  Not sure how much we
care, though.

-Eli

> Modified:
>    llvm/trunk/test/CodeGen/X86/2006-05-11-InstrSched.ll
>    llvm/trunk/test/CodeGen/X86/2009-06-05-ScalarToVectorByteMMX.ll
>    llvm/trunk/test/CodeGen/X86/movgs.ll
>    llvm/trunk/test/CodeGen/X86/v2f32.ll
>    llvm/trunk/test/CodeGen/X86/vec_set-C.ll
>
> Modified: llvm/trunk/test/CodeGen/X86/2006-05-11-InstrSched.ll
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2006-05-11-InstrSched.ll?rev=140107&r1=140106&r2=140107&view=diff
> ==============================================================================
> --- llvm/trunk/test/CodeGen/X86/2006-05-11-InstrSched.ll (original)
> +++ llvm/trunk/test/CodeGen/X86/2006-05-11-InstrSched.ll Mon Sep 19 19:08:12 2011
> @@ -1,4 +1,4 @@
> -; RUN: llc < %s -march=x86 -mattr=+sse2 -stats -realign-stack=0 |&\
> +; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -mattr=+sse2 -stats -realign-stack=0 |&\
>  ; RUN:     grep {asm-printer} | grep 34
>
>  target datalayout = "e-p:32:32"
>
> Modified: llvm/trunk/test/CodeGen/X86/2009-06-05-ScalarToVectorByteMMX.ll
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2009-06-05-ScalarToVectorByteMMX.ll?rev=140107&r1=140106&r2=140107&view=diff
> ==============================================================================
> --- llvm/trunk/test/CodeGen/X86/2009-06-05-ScalarToVectorByteMMX.ll (original)
> +++ llvm/trunk/test/CodeGen/X86/2009-06-05-ScalarToVectorByteMMX.ll Mon Sep 19 19:08:12 2011
> @@ -1,4 +1,4 @@
> -; RUN: llc < %s -march=x86 -mattr=+mmx,+sse2 | not grep movl
> +; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -mattr=+mmx,+sse2 | not grep movl
>
>  define <8 x i8> @a(i8 zeroext %x) nounwind {
>   %r = insertelement <8 x i8> undef, i8 %x, i32 0
>
> Modified: llvm/trunk/test/CodeGen/X86/movgs.ll
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/movgs.ll?rev=140107&r1=140106&r2=140107&view=diff
> ==============================================================================
> --- llvm/trunk/test/CodeGen/X86/movgs.ll (original)
> +++ llvm/trunk/test/CodeGen/X86/movgs.ll Mon Sep 19 19:08:12 2011
> @@ -1,4 +1,4 @@
> -; RUN: llc < %s -march=x86 -mattr=sse41 | FileCheck %s --check-prefix=X32
> +; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -mattr=sse41 | FileCheck %s --check-prefix=X32
>  ; 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
>
>
> Modified: llvm/trunk/test/CodeGen/X86/v2f32.ll
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/v2f32.ll?rev=140107&r1=140106&r2=140107&view=diff
> ==============================================================================
> --- llvm/trunk/test/CodeGen/X86/v2f32.ll (original)
> +++ llvm/trunk/test/CodeGen/X86/v2f32.ll Mon Sep 19 19:08:12 2011
> @@ -1,6 +1,6 @@
>  ; RUN: llc < %s -mtriple=x86_64-linux -mcpu=penryn -asm-verbose=0 -o - | FileCheck %s -check-prefix=X64
>  ; RUN: llc < %s -mtriple=x86_64-win32 -mcpu=penryn -asm-verbose=0 -o - | FileCheck %s -check-prefix=W64
> -; RUN: llc < %s -mcpu=yonah -march=x86 -asm-verbose=0 -o - | FileCheck %s -check-prefix=X32
> +; RUN: llc < %s -mcpu=yonah -march=x86 -mtriple=i386-linux-gnu -asm-verbose=0 -o - | FileCheck %s -check-prefix=X32
>
>  ; PR7518
>  define void @test1(<2 x float> %Q, float *%P2) nounwind {
>
> Modified: llvm/trunk/test/CodeGen/X86/vec_set-C.ll
> URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/vec_set-C.ll?rev=140107&r1=140106&r2=140107&view=diff
> ==============================================================================
> --- llvm/trunk/test/CodeGen/X86/vec_set-C.ll (original)
> +++ llvm/trunk/test/CodeGen/X86/vec_set-C.ll Mon Sep 19 19:08:12 2011
> @@ -1,6 +1,6 @@
> -; RUN: llc < %s -march=x86 -mattr=+sse2 | grep movq
> -; RUN: llc < %s -march=x86 -mattr=+sse2 | grep mov | count 1
> -; RUN: llc < %s -march=x86-64 -mattr=+sse2 | grep movd
> +; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -mattr=+sse2 | grep movq
> +; RUN: llc < %s -march=x86 -mtriple=i386-linux-gnu -mattr=+sse2 | grep mov | count 1
> +; RUN: llc < %s -march=x86-64 -mtriple=x86_64-pc-linux -mattr=+sse2 | grep movd
>
>  define <2 x i64> @t1(i64 %x) nounwind  {
>        %tmp8 = insertelement <2 x i64> zeroinitializer, i64 %x, i32 0
>
>
> _______________________________________________
> llvm-commits mailing list
> llvm-commits at cs.uiuc.edu
> http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits
>




More information about the llvm-commits mailing list