mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-13 04:38:24 +00:00
constify a bunch of dwarf stuff now that the registerinfo method
is constified. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94613 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -57,14 +57,14 @@ void DwarfWriter::EndModule() {
|
||||
|
||||
/// BeginFunction - Gather pre-function debug information. Assumes being
|
||||
/// emitted immediately after the function entry point.
|
||||
void DwarfWriter::BeginFunction(MachineFunction *MF) {
|
||||
void DwarfWriter::BeginFunction(const MachineFunction *MF) {
|
||||
DE->BeginFunction(MF);
|
||||
DD->beginFunction(MF);
|
||||
}
|
||||
|
||||
/// EndFunction - Gather and emit post-function debug information.
|
||||
///
|
||||
void DwarfWriter::EndFunction(MachineFunction *MF) {
|
||||
void DwarfWriter::EndFunction(const MachineFunction *MF) {
|
||||
DD->endFunction(MF);
|
||||
DE->EndFunction();
|
||||
|
||||
|
Reference in New Issue
Block a user