[llvm] r229563 - use a triple instead of a cpu; less builbot sadness

Sanjay Patel spatel at rotateright.com
Tue Feb 17 13:59:54 PST 2015


Author: spatel
Date: Tue Feb 17 15:59:54 2015
New Revision: 229563

URL: http://llvm.org/viewvc/llvm-project?rev=229563&view=rev
Log:
use a triple instead of a cpu; less builbot sadness

Modified:
    llvm/trunk/test/CodeGen/X86/logical-load-fold.ll

Modified: llvm/trunk/test/CodeGen/X86/logical-load-fold.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/logical-load-fold.ll?rev=229563&r1=229562&r2=229563&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/logical-load-fold.ll (original)
+++ llvm/trunk/test/CodeGen/X86/logical-load-fold.ll Tue Feb 17 15:59:54 2015
@@ -1,5 +1,5 @@
-; RUN: llc < %s -mcpu=x86-64 -mattr=sse2,sse-unaligned-mem | FileCheck %s --check-prefix=SSE2
-; RUN: llc < %s -mcpu=x86-64 -mattr=avx                    | FileCheck %s --check-prefix=AVX
+; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=sse2,sse-unaligned-mem | FileCheck %s --check-prefix=SSE2
+; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=avx                    | FileCheck %s --check-prefix=AVX
 
 ; Although we have the ability to fold an unaligned load with AVX 
 ; and under special conditions with some SSE implementations, we





More information about the llvm-commits mailing list