[llvm] r178287 - Specify CPUs on the PPC bswap-load-store test
Hal Finkel
hfinkel at anl.gov
Thu Mar 28 13:35:18 PDT 2013
Author: hfinkel
Date: Thu Mar 28 15:35:18 2013
New Revision: 178287
URL: http://llvm.org/viewvc/llvm-project?rev=178287&view=rev
Log:
Specify CPUs on the PPC bswap-load-store test
Otherwise, the CHECK-NOT's might trigger depending on the host's CPU.
Modified:
llvm/trunk/test/CodeGen/PowerPC/bswap-load-store.ll
Modified: llvm/trunk/test/CodeGen/PowerPC/bswap-load-store.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/bswap-load-store.ll?rev=178287&r1=178286&r2=178287&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/bswap-load-store.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/bswap-load-store.ll Thu Mar 28 15:35:18 2013
@@ -1,5 +1,5 @@
-; RUN: llc < %s -march=ppc32 | FileCheck %s -check-prefix=X32
-; RUN: llc < %s -march=ppc64 | FileCheck %s -check-prefix=X64
+; RUN: llc < %s -march=ppc32 -mcpu=ppc32 | FileCheck %s -check-prefix=X32
+; RUN: llc < %s -march=ppc64 -mcpu=ppc64 | FileCheck %s -check-prefix=X64
; RUN: llc < %s -march=ppc64 -mcpu=pwr7 | FileCheck %s -check-prefix=PWR7
; RUN: llc < %s -march=ppc32 -mcpu=pwr7 | FileCheck %s -check-prefix=X32
More information about the llvm-commits
mailing list