From 4650b2f36949407ef25686440e3d65ac47709deb Mon Sep 17 00:00:00 2001 From: Jeremy Morse Date: Fri, 6 Dec 2019 12:50:18 +0000 Subject: [PATCH] Attempt to fix a debuginfo test that wasn't as generic as I thought An ARM buildbot croaks when this test doesn't have a triple specified: http://lab.llvm.org:8011/builders/clang-cmake-armv7-quick/builds/12021/ Move the test to the X86 directory and put an x86_64 triple on the llc command line. --- llvm/test/DebugInfo/{Generic => X86}/codegenprep-addrsink.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename llvm/test/DebugInfo/{Generic => X86}/codegenprep-addrsink.ll (98%) diff --git a/llvm/test/DebugInfo/Generic/codegenprep-addrsink.ll b/llvm/test/DebugInfo/X86/codegenprep-addrsink.ll similarity index 98% rename from llvm/test/DebugInfo/Generic/codegenprep-addrsink.ll rename to llvm/test/DebugInfo/X86/codegenprep-addrsink.ll index 5d245c9..a3a80e1 100644 --- a/llvm/test/DebugInfo/Generic/codegenprep-addrsink.ll +++ b/llvm/test/DebugInfo/X86/codegenprep-addrsink.ll @@ -1,4 +1,4 @@ -; RUN: llc -start-before=codegenprepare -stop-after=codegenprepare %s -o - | FileCheck %s +; RUN: llc -start-before=codegenprepare -stop-after=codegenprepare -mtriple=x86_64-unknown-unknown %s -o - | FileCheck %s ; ; CGP duplicates address calculation into each basic block that contains loads ; or stores, so that they can be folded into instruction memory operands for -- 2.7.4