From 3d0708d4a44a9064b6c5694caa985dcc46685728 Mon Sep 17 00:00:00 2001 From: Oliver Stannard Date: Tue, 10 Nov 2015 14:09:08 +0000 Subject: [PATCH] Update test to use explicit triple This is needed for targets which do not support big-endian with the default triple. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252603 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/CodeGen/AArch64/arm64-ldr-merge.ll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/CodeGen/AArch64/arm64-ldr-merge.ll b/test/CodeGen/AArch64/arm64-ldr-merge.ll index 5d8cb8d745d..06721e70e58 100644 --- a/test/CodeGen/AArch64/arm64-ldr-merge.ll +++ b/test/CodeGen/AArch64/arm64-ldr-merge.ll @@ -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 -- 2.34.1