Skip to content

Commit 1e944d4

Browse files
committed
[Pass] Rename dwarfehprepare -> dwarf-eh-prepare
1 parent eb1d655 commit 1e944d4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

llvm/include/llvm/CodeGen/MachinePassRegistry.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ DUMMY_FUNCTION_PASS("atomic-expand", AtomicExpandPass, ())
121121
DUMMY_FUNCTION_PASS("cfguard-check", CFGuardCheckPass, ())
122122
DUMMY_FUNCTION_PASS("cfguard-dispatch", CFGuardDispatchPass, ())
123123
DUMMY_FUNCTION_PASS("codegenprepare", CodeGenPreparePass, ())
124-
DUMMY_FUNCTION_PASS("dwarfehprepare", DwarfEHPass, ())
124+
DUMMY_FUNCTION_PASS("dwarf-eh-prepare", DwarfEHPass, ())
125125
DUMMY_FUNCTION_PASS("expandmemcmp", ExpandMemCmpPass, ())
126126
DUMMY_FUNCTION_PASS("gc-info-printer", GCInfoPrinterPass, ())
127127
DUMMY_FUNCTION_PASS("gc-lowering", GCLoweringPass, ())

llvm/lib/Passes/PassRegistry.def

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ FUNCTION_PASS("dot-dom-only", DomOnlyPrinter())
302302
FUNCTION_PASS("dot-post-dom", PostDomPrinter())
303303
FUNCTION_PASS("dot-post-dom-only", PostDomOnlyPrinter())
304304
FUNCTION_PASS("dse", DSEPass())
305-
FUNCTION_PASS("dwarfehprepare", DwarfEHPreparePass(TM))
305+
FUNCTION_PASS("dwarf-eh-prepare", DwarfEHPreparePass(TM))
306306
FUNCTION_PASS("expand-large-div-rem", ExpandLargeDivRemPass(TM))
307307
FUNCTION_PASS("expand-large-fp-convert", ExpandLargeFpConvertPass(TM))
308308
FUNCTION_PASS("fix-irreducible", FixIrreduciblePass())

llvm/test/CodeGen/X86/dwarf-eh-prepare-dbg.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
22
; RUN: opt -S -mtriple=x86_64-linux-gnu -dwarfehprepare < %s | FileCheck %s
3-
; RUN: opt -S -mtriple=x86_64-linux-gnu -passes=dwarfehprepare < %s | FileCheck %s
3+
; RUN: opt -S -mtriple=x86_64-linux-gnu -passes=dwarf-eh-prepare < %s | FileCheck %s
44

55
; PR57469: If _Unwind_Resume is defined in the same module and we have debug
66
; info, then the inserted _Unwind_Resume calls also need to have a dummy debug

llvm/test/CodeGen/X86/dwarf-eh-prepare.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; RUN: opt -mtriple=x86_64-linux-gnu -dwarfehprepare -simplifycfg-require-and-preserve-domtree=1 -run-twice < %s -S | FileCheck %s
2-
; RUN: opt -mtriple=x86_64-linux-gnu -passes=dwarfehprepare -codegen-opt-level=2 -simplifycfg-require-and-preserve-domtree=1 -run-twice < %s -S | FileCheck %s
2+
; RUN: opt -mtriple=x86_64-linux-gnu -passes=dwarf-eh-prepare -codegen-opt-level=2 -simplifycfg-require-and-preserve-domtree=1 -run-twice < %s -S | FileCheck %s
33

44
; Check basic functionality of IR-to-IR DWARF EH preparation. This should
55
; eliminate resumes. This pass requires a TargetMachine, so we put it under X86

llvm/test/CodeGen/X86/dwarf_eh_resume.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; RUN: opt -mtriple=x86_64-linux-gnu -dwarfehprepare -S %s | FileCheck %s
2-
; RUN: opt -mtriple=x86_64-linux-gnu -passes=dwarfehprepare -S %s | FileCheck %s
2+
; RUN: opt -mtriple=x86_64-linux-gnu -passes=dwarf-eh-prepare -S %s | FileCheck %s
33

44
declare i32 @hoge(...)
55

0 commit comments

Comments
 (0)