From: Benjamin Kramer Date: Sat, 12 Oct 2013 11:17:12 +0000 (+0000) Subject: Force a CPU on test so it doesn't depend on microarchitectural scheduling decisions. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=18de809b0c8bb2e608b2e8cef5059480d3e24b9b;p=oota-llvm.git Force a CPU on test so it doesn't depend on microarchitectural scheduling decisions. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192532 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/load-slice.ll b/test/CodeGen/X86/load-slice.ll index 4355e3dfe92..b1f778c1172 100644 --- a/test/CodeGen/X86/load-slice.ll +++ b/test/CodeGen/X86/load-slice.ll @@ -1,5 +1,5 @@ -; RUN: llc -mtriple x86_64-apple-macosx -mattr=+avx -combiner-stress-load-slicing < %s -o - | FileCheck %s --check-prefix=STRESS -; RUN: llc -mtriple x86_64-apple-macosx -mattr=+avx < %s -o - | FileCheck %s --check-prefix=REGULAR +; RUN: llc -mtriple x86_64-apple-macosx -mcpu=corei7-avx -combiner-stress-load-slicing < %s -o - | FileCheck %s --check-prefix=STRESS +; RUN: llc -mtriple x86_64-apple-macosx -mcpu=corei7-avx < %s -o - | FileCheck %s --check-prefix=REGULAR ; ;