[llvm] 8774414 - [FastISel][test] %llc_dwarf -mtriple -> llc -mtriple

Fangrui Song via llvm-commits llvm-commits at lists.llvm.org
Mon Nov 9 12:10:52 PST 2020


Author: Fangrui Song
Date: 2020-11-09T12:10:44-08:00
New Revision: 8774414d6e537eec39e7eda105079dbff7e5aa93

URL: https://github.com/llvm/llvm-project/commit/8774414d6e537eec39e7eda105079dbff7e5aa93
DIFF: https://github.com/llvm/llvm-project/commit/8774414d6e537eec39e7eda105079dbff7e5aa93.diff

LOG: [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!

Added: 
    

Modified: 
    llvm/test/CodeGen/X86/fastisel-memset-flush.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/CodeGen/X86/fastisel-memset-flush.ll b/llvm/test/CodeGen/X86/fastisel-memset-flush.ll
index 4be5f09c9c76..f74215dbcc7d 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:


        


More information about the llvm-commits mailing list