From a1c338d70b9be7b5c6f9e16a325d692e8f439172 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Tue, 4 Feb 2020 18:59:23 -0800 Subject: [PATCH] DebugInfo: Fix convert-loclist.ll Split DWARF variant to use a hardcoded triple Since we don't support Split DWARF emission on non-ELF formats, hardcode an elfine triple (we don't have a way to ask for "any ELF triple" it seems, so hardcoded will have to do) --- llvm/test/DebugInfo/X86/convert-loclist.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/DebugInfo/X86/convert-loclist.ll b/llvm/test/DebugInfo/X86/convert-loclist.ll index 955e288..a12ce5c 100644 --- a/llvm/test/DebugInfo/X86/convert-loclist.ll +++ b/llvm/test/DebugInfo/X86/convert-loclist.ll @@ -1,6 +1,6 @@ ; RUN: %llc_dwarf -filetype=obj < %s \ ; RUN: | llvm-dwarfdump -debug-info -debug-loclists - | FileCheck %s -; RUN: %llc_dwarf -split-dwarf-file=foo.dwo -filetype=obj < %s \ +; RUN: llc -mtriple x86_64-pc-linux -split-dwarf-file=foo.dwo -filetype=obj < %s \ ; RUN: | llvm-dwarfdump -debug-info -debug-loclists - | FileCheck %s ; CHECK: 0x{{0*}}[[TYPE:.*]]: DW_TAG_base_type -- 2.7.4