From 69d3406a2d5832effb999c4bd297a36d4e81e6a7 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Sun, 25 May 2014 15:38:52 +0000 Subject: [PATCH] Streamline test case by avoiding a temporary file and piping llc output straight to llvm-dwarfdump We still do temporary files in many cases, just updating this particular one because I was debugging it and made this change while doing so. llvm-svn: 209601 --- llvm/test/DebugInfo/X86/concrete_out_of_line.ll | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/llvm/test/DebugInfo/X86/concrete_out_of_line.ll b/llvm/test/DebugInfo/X86/concrete_out_of_line.ll index ad9d3b6..a8bf7ca 100644 --- a/llvm/test/DebugInfo/X86/concrete_out_of_line.ll +++ b/llvm/test/DebugInfo/X86/concrete_out_of_line.ll @@ -1,5 +1,4 @@ -; RUN: llc -mtriple=x86_64-linux %s -o %t -filetype=obj -; RUN: llvm-dwarfdump -debug-dump=info %t | FileCheck %s +; RUN: llc -mtriple=x86_64-linux < %s -filetype=obj | llvm-dwarfdump -debug-dump=info - | FileCheck %s ; test that we add DW_AT_inline even when we only have concrete out of line ; instances. -- 2.7.4