From 51a412113b201e275f69c90be1ac128770ef6b82 Mon Sep 17 00:00:00 2001 From: Teresa Johnson Date: Fri, 17 Feb 2017 00:52:09 +0000 Subject: [PATCH] Attempt to fix bot failures by adding -mtriple to llc invocation Failures on hexagon from test added with r295384, e.g.: http://lab.llvm.org:8011/builders/llvm-hexagon-elf/builds/3793 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@295389 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/DebugInfo/Generic/debug_and_nodebug_CUs.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/DebugInfo/Generic/debug_and_nodebug_CUs.ll b/test/DebugInfo/Generic/debug_and_nodebug_CUs.ll index e6c33306092..8347893ccf3 100644 --- a/test/DebugInfo/Generic/debug_and_nodebug_CUs.ll +++ b/test/DebugInfo/Generic/debug_and_nodebug_CUs.ll @@ -24,7 +24,7 @@ ; Ensure we can successfully generate assembly, and check that neither ; "b.cpp" nor "f3" strings show up (which would be in the .debug_str ; section if we had generated any lexical scopes and debug for them). -; RUN: llc %s -o - | FileCheck %s +; RUN: llc -mtriple=x86_64-unknown-linux-gnu %s -o - | FileCheck %s ; CHECK-NOT: .asciz "b.cpp" ; CHECK-NOT: .asciz "f3" -- 2.50.1