[llvm] r252603 - Update test to use explicit triple

Oliver Stannard via llvm-commits llvm-commits at lists.llvm.org
Tue Nov 10 06:09:08 PST 2015


Author: olista01
Date: Tue Nov 10 08:09:08 2015
New Revision: 252603

URL: http://llvm.org/viewvc/llvm-project?rev=252603&view=rev
Log:
Update test to use explicit triple

This is needed for targets which do not support big-endian with the default
triple.


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

Modified: llvm/trunk/test/CodeGen/AArch64/arm64-ldr-merge.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/AArch64/arm64-ldr-merge.ll?rev=252603&r1=252602&r2=252603&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/AArch64/arm64-ldr-merge.ll (original)
+++ llvm/trunk/test/CodeGen/AArch64/arm64-ldr-merge.ll Tue Nov 10 08:09:08 2015
@@ -1,5 +1,5 @@
-; RUN: llc < %s -march=arm64 -mcpu=cortex-a57 -verify-machineinstrs | FileCheck %s --check-prefix=CHECK --check-prefix=LE
-; RUN: llc < %s -march=aarch64_be -mcpu=cortex-a57 -verify-machineinstrs | FileCheck %s --check-prefix=CHECK --check-prefix=BE
+; RUN: llc < %s -mtriple aarch64--none-eabi -mcpu=cortex-a57 -verify-machineinstrs | FileCheck %s --check-prefix=CHECK --check-prefix=LE
+; RUN: llc < %s -mtriple aarch64_be--none-eabi -mcpu=cortex-a57 -verify-machineinstrs | FileCheck %s --check-prefix=CHECK --check-prefix=BE
 
 ; CHECK-LABEL: Ldrh_merge
 ; CHECK-NOT: ldrh




More information about the llvm-commits mailing list