Skip to content

Commit c210529

Browse files
author
Devang Patel
committed
Simplify.
llvm-svn: 83123
1 parent 17199b5 commit c210529

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

llvm/include/llvm/CodeGen/MachineModuleInfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ class MachineModuleInfo : public ImmutablePass {
153153

154154
/// BeginFunction - Begin gathering function meta information.
155155
///
156-
void BeginFunction(MachineFunction *MF);
156+
void BeginFunction(MachineFunction *MF) {}
157157

158158
/// EndFunction - Discard function meta information.
159159
///

llvm/lib/CodeGen/MachineModuleInfo.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,6 @@ bool MachineModuleInfo::doFinalization() {
6363
return false;
6464
}
6565

66-
/// BeginFunction - Begin gathering function meta information.
67-
///
68-
void MachineModuleInfo::BeginFunction(MachineFunction *MF) {
69-
// Coming soon.
70-
}
71-
7266
/// EndFunction - Discard function meta information.
7367
///
7468
void MachineModuleInfo::EndFunction() {

0 commit comments

Comments
 (0)