[llvm] 12edd4b - Fix arm bot failure after f91d18eaa946b2
Sourabh Singh Tomar via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 21 22:43:42 PDT 2020
Author: Sourabh Singh Tomar
Date: 2020-08-22T11:06:10+05:30
New Revision: 12edd4b36475170d445ac93da34e4883f23a8361
URL: https://github.com/llvm/llvm-project/commit/12edd4b36475170d445ac93da34e4883f23a8361
DIFF: https://github.com/llvm/llvm-project/commit/12edd4b36475170d445ac93da34e4883f23a8361.diff
LOG: Fix arm bot failure after f91d18eaa946b2
llc doesn't seem to automatically pick default `--triple`.
using `%llc_dwarf` should fix this.
Builder:
http://lab.llvm.org:8011/builders/clang-cmake-armv7-quick/builds/20310
Error log:
bin/llc: error: : error: unable to get target for 'x86_64-unknown-linux-gnu', see --version and --triple.
Added:
Modified:
llvm/test/DebugInfo/distringtype.ll
Removed:
################################################################################
diff --git a/llvm/test/DebugInfo/distringtype.ll b/llvm/test/DebugInfo/distringtype.ll
index b69dee3f6097..3f5899c188d4 100644
--- a/llvm/test/DebugInfo/distringtype.ll
+++ b/llvm/test/DebugInfo/distringtype.ll
@@ -5,7 +5,7 @@
;; !DIStringType(name: "character(*)", stringLength: !{{[0-9]+}},
;; stringLengthExpression: !DIExpression(), size: 32)
-; RUN: llc -filetype=obj %s -o - | llvm-dwarfdump - | FileCheck %s
+; RUN: %llc_dwarf -filetype=obj %s -o - | llvm-dwarfdump - | FileCheck %s
; CHECK: DW_TAG_string_type
; CHECK: DW_AT_name ("character(*)!2")
; CHECK-NEXT: DW_AT_string_length
More information about the llvm-commits
mailing list