[llvm] r202256 - Stop test/CodeGen/ARM/a15.ll targetting non-ARM targets.
Daniel Sanders
daniel.sanders at imgtec.com
Wed Feb 26 03:26:18 PST 2014
Author: dsanders
Date: Wed Feb 26 05:26:18 2014
New Revision: 202256
URL: http://llvm.org/viewvc/llvm-project?rev=202256&view=rev
Log:
Stop test/CodeGen/ARM/a15.ll targetting non-ARM targets.
Summary:
Fixes an issue where a test attempts to use -mcpu=cortex-a15 on non-ARM targets.
This triggers an assertion on MIPS since it doesn't know what ABI to use by default for
unrecognized processors.
Reviewers: rengolin
Reviewed By: rengolin
CC: llvm-commits, aemerson, rengolin
Differential Revision: http://llvm-reviews.chandlerc.com/D2876
Modified:
llvm/trunk/test/CodeGen/ARM/a15.ll
Modified: llvm/trunk/test/CodeGen/ARM/a15.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/a15.ll?rev=202256&r1=202255&r2=202256&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/a15.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/a15.ll Wed Feb 26 05:26:18 2014
@@ -1,4 +1,4 @@
-; RUN: llc < %s -mcpu=cortex-a15 | FileCheck %s
+; RUN: llc < %s -march=arm -mcpu=cortex-a15 | FileCheck %s
; CHECK: a
define i32 @a(i32 %x) {
More information about the llvm-commits
mailing list