Skip to content

Commit

Permalink
[NFC][RemoveDIs] Fix typo in disabled test run line
Browse files Browse the repository at this point in the history
The disabled line should be checking FastISel but was incorrectly checking
SelectionDAG due to a copy-paste error in #73496.
  • Loading branch information
OCHyams committed Jan 2, 2024
1 parent a3e8e86 commit 21a0335
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions llvm/test/DebugInfo/X86/sret.ll
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 21a0335

Please sign in to comment.