From: Hal Finkel Date: Wed, 14 Jan 2015 01:37:21 +0000 (+0000) Subject: [PowerPC] Fix the noop-insert test X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=037c21f82cf606abc4700fb21904ee0f871aef41;p=oota-llvm.git [PowerPC] Fix the noop-insert test The form of nops used is CPU-specific (some CPUs, such as the POWER7, have special group-terminating nops). We probably want a different callback for this kind of nop insertion (something more like MCAsmBackend::writeNopData), or for PPC to use a different mechanism for scheduling nops, but this will stop the test from failing for now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@225928 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/PowerPC/noop-insert.ll b/test/CodeGen/PowerPC/noop-insert.ll index f019189d372..ac8f744919a 100644 --- a/test/CodeGen/PowerPC/noop-insert.ll +++ b/test/CodeGen/PowerPC/noop-insert.ll @@ -1,6 +1,6 @@ -; RUN: llc < %s -march=ppc32 -noop-insertion | FileCheck %s -; RUN: llc < %s -march=ppc32 -noop-insertion -rng-seed=1 | FileCheck %s --check-prefix=SEED1 -; RUN: llc < %s -march=ppc32 -noop-insertion -noop-insertion-percentage=100 | FileCheck %s --check-prefix=100PERCENT +; RUN: llc < %s -march=ppc32 -mcpu=g4 -noop-insertion | FileCheck %s +; RUN: llc < %s -march=ppc32 -mcpu=g4 -noop-insertion -rng-seed=1 | FileCheck %s --check-prefix=SEED1 +; RUN: llc < %s -march=ppc32 -mcpu=g4 -noop-insertion -noop-insertion-percentage=100 | FileCheck %s --check-prefix=100PERCENT ; This test case checks that NOOPs are inserted correctly for PowerPC.