[llvm] r236855 - Fix test added in r236850 for OSX builders.

James Y Knight jyknight at google.com
Fri May 8 07:04:54 PDT 2015


Author: jyknight
Date: Fri May  8 09:04:54 2015
New Revision: 236855

URL: http://llvm.org/viewvc/llvm-project?rev=236855&view=rev
Log:
Fix test added in r236850 for OSX builders.

Need to specify triple so that llvm emits the asm syntax that the
test expected.

Modified:
    llvm/trunk/test/CodeGen/PowerPC/MergeConsecutiveStores.ll

Modified: llvm/trunk/test/CodeGen/PowerPC/MergeConsecutiveStores.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/MergeConsecutiveStores.ll?rev=236855&r1=236854&r2=236855&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/MergeConsecutiveStores.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/MergeConsecutiveStores.ll Fri May  8 09:04:54 2015
@@ -1,4 +1,4 @@
-; RUN: llc -march=ppc32 -mattr=+altivec < %s | FileCheck %s
+; RUN: llc -march=ppc32 -mtriple=powerpc-unknown-linux-gnu -mattr=+altivec < %s | FileCheck %s
 
 ;; This test ensures that MergeConsecutiveStores does not attempt to
 ;; merge stores or loads when doing so would result in unaligned





More information about the llvm-commits mailing list