diff options
| author | Devang Patel <dpatel@apple.com> | 2009-09-30 00:14:40 +0000 |
|---|---|---|
| committer | Devang Patel <dpatel@apple.com> | 2009-09-30 00:14:40 +0000 |
| commit | c2105298cc3984218a3a45ab1d51518b834e1e70 (patch) | |
| tree | b93dbe98e66e9cc3f8da23365e5b561c1bdf21b5 /llvm | |
| parent | 17199b56b0ac70028412f51d4586fb796877eb11 (diff) | |
| download | bcm5719-llvm-c2105298cc3984218a3a45ab1d51518b834e1e70.tar.gz bcm5719-llvm-c2105298cc3984218a3a45ab1d51518b834e1e70.zip | |
Simplify.
llvm-svn: 83123
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/CodeGen/MachineModuleInfo.h | 2 | ||||
| -rw-r--r-- | llvm/lib/CodeGen/MachineModuleInfo.cpp | 6 |
2 files changed, 1 insertions, 7 deletions
diff --git a/llvm/include/llvm/CodeGen/MachineModuleInfo.h b/llvm/include/llvm/CodeGen/MachineModuleInfo.h index e5a962d26b7..7cea0b73f60 100644 --- a/llvm/include/llvm/CodeGen/MachineModuleInfo.h +++ b/llvm/include/llvm/CodeGen/MachineModuleInfo.h @@ -153,7 +153,7 @@ public: /// BeginFunction - Begin gathering function meta information. /// - void BeginFunction(MachineFunction *MF); + void BeginFunction(MachineFunction *MF) {} /// EndFunction - Discard function meta information. /// diff --git a/llvm/lib/CodeGen/MachineModuleInfo.cpp b/llvm/lib/CodeGen/MachineModuleInfo.cpp index 0a8bf5a3d89..8661b9ee132 100644 --- a/llvm/lib/CodeGen/MachineModuleInfo.cpp +++ b/llvm/lib/CodeGen/MachineModuleInfo.cpp @@ -63,12 +63,6 @@ bool MachineModuleInfo::doFinalization() { return false; } -/// BeginFunction - Begin gathering function meta information. -/// -void MachineModuleInfo::BeginFunction(MachineFunction *MF) { - // Coming soon. -} - /// EndFunction - Discard function meta information. /// void MachineModuleInfo::EndFunction() { |

