From 8774414d6e537eec39e7eda105079dbff7e5aa93 Mon Sep 17 00:00:00 2001 From: Fangrui Song Date: Mon, 9 Nov 2020 12:10:44 -0800 Subject: [PATCH] [FastISel][test] %llc_dwarf -mtriple -> llc -mtriple if config.target_triple contains 'windows-msvc', %llc_dwarf has a -mtriple: llc.exe: for the --mtriple option: may only occur zero or one times! --- llvm/test/CodeGen/X86/fastisel-memset-flush.ll | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/test/CodeGen/X86/fastisel-memset-flush.ll b/llvm/test/CodeGen/X86/fastisel-memset-flush.ll index 4be5f09..f74215d 100644 --- a/llvm/test/CodeGen/X86/fastisel-memset-flush.ll +++ b/llvm/test/CodeGen/X86/fastisel-memset-flush.ll @@ -1,4 +1,4 @@ -; RUN: %llc_dwarf -mtriple=x86_64 -O0 < %s | FileCheck %s +; RUN: llc -mtriple=x86_64 -O0 < %s | FileCheck %s define dso_local void @foo() !dbg !7 { entry: -- 2.7.4