[llvm] 21a0335 - [NFC][RemoveDIs] Fix typo in disabled test run line

via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 2 02:53:04 PST 2024


Author: OCHyams
Date: 2024-01-02T10:51:00Z
New Revision: 21a0335110a330846f738be37aeccb8685082faf

URL: https://github.com/llvm/llvm-project/commit/21a0335110a330846f738be37aeccb8685082faf
DIFF: https://github.com/llvm/llvm-project/commit/21a0335110a330846f738be37aeccb8685082faf.diff

LOG: [NFC][RemoveDIs] Fix typo in disabled test run line

The disabled line should be checking FastISel but was incorrectly checking
SelectionDAG due to a copy-paste error in #73496.

Added: 
    

Modified: 
    llvm/test/DebugInfo/X86/sret.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/DebugInfo/X86/sret.ll b/llvm/test/DebugInfo/X86/sret.ll
index 087f136541d931..f06b097d07b986 100644
--- a/llvm/test/DebugInfo/X86/sret.ll
+++ b/llvm/test/DebugInfo/X86/sret.ll
@@ -12,9 +12,9 @@
 ; RUN: llc -O0 -fast-isel=true -mtriple=x86_64-apple-darwin -filetype=obj -o - %s | llvm-dwarfdump -debug-info - | FileCheck -check-prefixes=CHECK,FASTISEL %s
 ; RUN: llc -O0 -fast-isel=false -mtriple=x86_64-apple-darwin -filetype=obj -o - %s | llvm-dwarfdump -debug-info - | FileCheck -check-prefixes=CHECK,SDAG %s
 
-; RUN: llc --try-experimental-debuginfo-iterators -O0 -fast-isel=false -mtriple=x86_64-apple-darwin -filetype=obj -o - %s | llvm-dwarfdump -debug-info - | FileCheck -check-prefixes=CHECK,SDAG %s
 ;; FIXME: RemoveDIs - enable when FastISel support is added.
-; run: llc --try-experimental-debuginfo-iterators -O0 -fast-isel=false -mtriple=x86_64-apple-darwin -filetype=obj -o - %s | llvm-dwarfdump -debug-info - | FileCheck -check-prefixes=CHECK,SDAG %s
+; run: llc --try-experimental-debuginfo-iterators -O0 -fast-isel=true -mtriple=x86_64-apple-darwin -filetype=obj -o - %s | llvm-dwarfdump -debug-info - | FileCheck -check-prefixes=CHECK,FASTISEL %s
+; RUN: llc --try-experimental-debuginfo-iterators -O0 -fast-isel=false -mtriple=x86_64-apple-darwin -filetype=obj -o - %s | llvm-dwarfdump -debug-info - | FileCheck -check-prefixes=CHECK,SDAG %s
 
 ; CHECK: _ZN1B9AInstanceEv
 ; CHECK: DW_TAG_variable


        


More information about the llvm-commits mailing list