From e5bd698a3ca285e32da01c9a5c44d885cce0e29d Mon Sep 17 00:00:00 2001 From: Artyom Skrobov Date: Wed, 11 Nov 2015 17:22:18 +0000 Subject: [PATCH] test/DebugInfo/ARM/prologue_end.ll references thumbv1, which is invalid. The committer didn't respond at http://reviews.llvm.org/D14338, so we've got to fix this for them. This test doesn't pass with thumbv6, so I suppose what they meant is thumbv7. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252754 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/DebugInfo/ARM/prologue_end.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/DebugInfo/ARM/prologue_end.ll b/test/DebugInfo/ARM/prologue_end.ll index 9194bf3284a..b663b98e038 100644 --- a/test/DebugInfo/ARM/prologue_end.ll +++ b/test/DebugInfo/ARM/prologue_end.ll @@ -1,5 +1,5 @@ ; RUN: llc -disable-fp-elim -O0 %s -mtriple armv7-apple-darwin -o - | FileCheck %s -; RUN: llc -disable-fp-elim -O0 %s -mtriple thumbv1-apple-darwin -o - | FileCheck %s +; RUN: llc -disable-fp-elim -O0 %s -mtriple thumbv7-apple-darwin -o - | FileCheck %s ; int func(void); ; void prologue_end_test() { -- 2.34.1