From: Preston Gurd Date: Wed, 18 Sep 2013 21:39:33 +0000 (+0000) Subject: Attempt to fix llvm-ppc64-linux2 buildbot failure by adding X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=51279d45f787758acca1a885f9cb979c5b0033cc;p=oota-llvm.git Attempt to fix llvm-ppc64-linux2 buildbot failure by adding -march=x86 to SLM test. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190958 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/prefetch.ll b/test/CodeGen/X86/prefetch.ll index 08a913638b6..6157c39c815 100644 --- a/test/CodeGen/X86/prefetch.ll +++ b/test/CodeGen/X86/prefetch.ll @@ -1,7 +1,7 @@ ; RUN: llc < %s -march=x86 -mattr=+sse | FileCheck %s ; RUN: llc < %s -march=x86 -mattr=+avx | FileCheck %s ; RUN: llc < %s -march=x86 -mattr=+sse -mattr=+prfchw | FileCheck %s -check-prefix=PRFCHW -; RUN: llc < %s -mcpu=slm | FileCheck %s -check-prefix=SLM +; RUN: llc < %s -march=x86 -mcpu=slm | FileCheck %s -check-prefix=SLM ; rdar://10538297