[llvm-branch-commits] [llvm-branch] r81650 - in /llvm/branches/release_26/test/CodeGen/X86: bss_pagealigned.ll fp-stack-O0-crash.ll widen_load-0.ll widen_load-1.ll

Tanya Lattner tonic at nondot.org
Sat Sep 12 15:54:18 PDT 2009


Author: tbrethou
Date: Sat Sep 12 17:54:18 2009
New Revision: 81650

URL: http://llvm.org/viewvc/llvm-project?rev=81650&view=rev
Log:
Fix PR4962.

Modified:
    llvm/branches/release_26/test/CodeGen/X86/bss_pagealigned.ll
    llvm/branches/release_26/test/CodeGen/X86/fp-stack-O0-crash.ll
    llvm/branches/release_26/test/CodeGen/X86/widen_load-0.ll
    llvm/branches/release_26/test/CodeGen/X86/widen_load-1.ll

Modified: llvm/branches/release_26/test/CodeGen/X86/bss_pagealigned.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_26/test/CodeGen/X86/bss_pagealigned.ll?rev=81650&r1=81649&r2=81650&view=diff

==============================================================================
--- llvm/branches/release_26/test/CodeGen/X86/bss_pagealigned.ll (original)
+++ llvm/branches/release_26/test/CodeGen/X86/bss_pagealigned.ll Sat Sep 12 17:54:18 2009
@@ -1,4 +1,4 @@
-; RUN: llc --code-model=kernel -march=x86-64 <%s | FileCheck %s
+; RUN: llvm-as < %s | llc --code-model=kernel -march=x86-64 | FileCheck %s
 ; PR4933
 target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128"
 target triple = "x86_64-unknown-linux-gnu"

Modified: llvm/branches/release_26/test/CodeGen/X86/fp-stack-O0-crash.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_26/test/CodeGen/X86/fp-stack-O0-crash.ll?rev=81650&r1=81649&r2=81650&view=diff

==============================================================================
--- llvm/branches/release_26/test/CodeGen/X86/fp-stack-O0-crash.ll (original)
+++ llvm/branches/release_26/test/CodeGen/X86/fp-stack-O0-crash.ll Sat Sep 12 17:54:18 2009
@@ -1,4 +1,4 @@
-; RUN: llc %s -O0 -fast-isel -regalloc=local -o -
+; RUN: llvm-as < %s | llc -O0 -fast-isel -regalloc=local -o -
 ; PR4767
 
 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128"

Modified: llvm/branches/release_26/test/CodeGen/X86/widen_load-0.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_26/test/CodeGen/X86/widen_load-0.ll?rev=81650&r1=81649&r2=81650&view=diff

==============================================================================
--- llvm/branches/release_26/test/CodeGen/X86/widen_load-0.ll (original)
+++ llvm/branches/release_26/test/CodeGen/X86/widen_load-0.ll Sat Sep 12 17:54:18 2009
@@ -1,4 +1,4 @@
-; RUN: llc < %s -o - -march=x86-64 | FileCheck %s
+; RUN: llvm-as < %s | llc -o - -march=x86-64 | FileCheck %s
 ; PR4891
 
 ; Both loads should happen before either store.

Modified: llvm/branches/release_26/test/CodeGen/X86/widen_load-1.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_26/test/CodeGen/X86/widen_load-1.ll?rev=81650&r1=81649&r2=81650&view=diff

==============================================================================
--- llvm/branches/release_26/test/CodeGen/X86/widen_load-1.ll (original)
+++ llvm/branches/release_26/test/CodeGen/X86/widen_load-1.ll Sat Sep 12 17:54:18 2009
@@ -1,4 +1,4 @@
-; RUN: llc %s -o - -march=x86-64 -mtriple=x86_64-unknown-linux-gnu -disable-mmx | FileCheck %s
+; RUN: llvm-as < %s | llc -o - -march=x86-64 -mtriple=x86_64-unknown-linux-gnu -disable-mmx | FileCheck %s
 ; PR4891
 
 ; This load should be before the call, not after.





More information about the llvm-branch-commits mailing list