Skip to content

Commit dc697fd

Browse files
committed
use kebab-case for the name
1 parent cc00c3f commit dc697fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

llvm/include/llvm/Passes/MachinePassRegistry.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ MACHINE_FUNCTION_PASS("reg-usage-collector", RegUsageInfoCollectorPass())
173173
MACHINE_FUNCTION_PASS("reg-usage-propagation", RegUsageInfoPropagationPass())
174174
MACHINE_FUNCTION_PASS("register-coalescer", RegisterCoalescerPass())
175175
MACHINE_FUNCTION_PASS("rename-independent-subregs", RenameIndependentSubregsPass())
176-
MACHINE_FUNCTION_PASS("removeredundantdebugvalues", RemoveRedundantDebugValuesPass())
176+
MACHINE_FUNCTION_PASS("remove-redundant-debug-values", RemoveRedundantDebugValuesPass())
177177
MACHINE_FUNCTION_PASS("require-all-machine-function-properties",
178178
RequireAllMachineFunctionPropertiesPass())
179179
MACHINE_FUNCTION_PASS("stack-coloring", StackColoringPass())

llvm/test/DebugInfo/MIR/X86/remove-redundant-dbg-vals.mir

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# RUN: llc %s -o - -run-pass=removeredundantdebugvalues | FileCheck --implicit-check-not=DBG_VALUE %s
2-
# RUN: llc %s -o - -passes=removeredundantdebugvalues | FileCheck --implicit-check-not=DBG_VALUE %s
2+
# RUN: llc %s -o - -passes=remove-redundant-debug-values | FileCheck --implicit-check-not=DBG_VALUE %s
33

44
## This checks that the RemoveRedundantDebugValues removes redundant
55
## DBG_VALUEs. The MIR was hand-written, and foo{[2-6]}() are just

0 commit comments

Comments
 (0)