From 3bea6d76049b6ba3f12bb3deb480fb7807c15fc6 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Fri, 26 Dec 2014 16:42:47 +0000 Subject: [PATCH] No need to run llvm-as. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224859 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/PowerPC/Frames-large.ll | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/test/CodeGen/PowerPC/Frames-large.ll b/test/CodeGen/PowerPC/Frames-large.ll index 0ccea42619a..5b8aef42e76 100644 --- a/test/CodeGen/PowerPC/Frames-large.ll +++ b/test/CodeGen/PowerPC/Frames-large.ll @@ -1,9 +1,8 @@ -; RUN: llvm-as < %s > %t.bc -; RUN: llc < %t.bc -march=ppc32 | FileCheck %s -check-prefix=PPC32-NOFP -; RUN: llc < %t.bc -march=ppc32 -disable-fp-elim | FileCheck %s -check-prefix=PPC32-FP +; RUN: llc < %s -march=ppc32 | FileCheck %s -check-prefix=PPC32-NOFP +; RUN: llc < %s -march=ppc32 -disable-fp-elim | FileCheck %s -check-prefix=PPC32-FP -; RUN: llc < %t.bc -march=ppc64 | FileCheck %s -check-prefix=PPC64-NOFP -; RUN: llc < %t.bc -march=ppc64 -disable-fp-elim | FileCheck %s -check-prefix=PPC64-FP +; RUN: llc < %s -march=ppc64 | FileCheck %s -check-prefix=PPC64-NOFP +; RUN: llc < %s -march=ppc64 -disable-fp-elim | FileCheck %s -check-prefix=PPC64-FP target triple = "powerpc-apple-darwin8"