[llvm] r295389 - Attempt to fix bot failures by adding -mtriple to llc invocation

Teresa Johnson via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 16 16:52:09 PST 2017


Author: tejohnson
Date: Thu Feb 16 18:52:09 2017
New Revision: 295389

URL: http://llvm.org/viewvc/llvm-project?rev=295389&view=rev
Log:
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

Modified:
    llvm/trunk/test/DebugInfo/Generic/debug_and_nodebug_CUs.ll

Modified: llvm/trunk/test/DebugInfo/Generic/debug_and_nodebug_CUs.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/Generic/debug_and_nodebug_CUs.ll?rev=295389&r1=295388&r2=295389&view=diff
==============================================================================
--- llvm/trunk/test/DebugInfo/Generic/debug_and_nodebug_CUs.ll (original)
+++ llvm/trunk/test/DebugInfo/Generic/debug_and_nodebug_CUs.ll Thu Feb 16 18:52:09 2017
@@ -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"
 




More information about the llvm-commits mailing list