[llvm] r234451 - Use option -march instead of -mtriple to avoid overconditionalizing the test.

Akira Hatanaka ahatanaka at apple.com
Wed Apr 8 16:02:46 PDT 2015


Author: ahatanak
Date: Wed Apr  8 18:02:45 2015
New Revision: 234451

URL: http://llvm.org/viewvc/llvm-project?rev=234451&view=rev
Log:
Use option -march instead of -mtriple to avoid overconditionalizing the test.

This fixes r234439, which was committed to fix the test failures caused by
r234430.

Modified:
    llvm/trunk/test/CodeGen/AArch64/merge-store.ll

Modified: llvm/trunk/test/CodeGen/AArch64/merge-store.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/merge-store.ll?rev=234451&r1=234450&r2=234451&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/merge-store.ll (original)
+++ llvm/trunk/test/CodeGen/AArch64/merge-store.ll Wed Apr  8 18:02:45 2015
@@ -1,10 +1,10 @@
-; RUN: llc -mtriple=arm64-apple-ios7.0 %s -o - | FileCheck %s
+; RUN: llc -march aarch64 %s -o - | FileCheck %s
 
 @g0 = external global <3 x float>, align 16
 @g1 = external global <3 x float>, align 4
 
 ; CHECK: ldr s[[R0:[0-9]+]], {{\[}}[[R1:x[0-9]+]]{{\]}}, #4
-; CHECK: ld1.s { v[[R0]] }[1], {{\[}}[[R1]]{{\]}}
+; CHECK: ld1{{\.?s?}} { v[[R0]]{{\.?s?}} }[1], {{\[}}[[R1]]{{\]}}
 ; CHECK: str d[[R0]]
 
 define void @blam() {





More information about the llvm-commits mailing list