diff options
author | Devang Patel <dpatel@apple.com> | 2009-09-30 17:13:41 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-09-30 17:13:41 +0000 |
commit | 69cc57c3259249cd9e64735ba79da2ce0e64a4b5 (patch) | |
tree | d0423f7672862aefca18c037047074c7249f6e9a /include/llvm/CodeGen/MachineModuleInfo.h | |
parent | 460c482ed38f5c2f91e29eaacf241928d3d77edf (diff) |
Silence unused variable warning.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83151 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineModuleInfo.h')
-rw-r--r-- | include/llvm/CodeGen/MachineModuleInfo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/MachineModuleInfo.h b/include/llvm/CodeGen/MachineModuleInfo.h index 7cea0b73f6..6707ab119c 100644 --- a/include/llvm/CodeGen/MachineModuleInfo.h +++ b/include/llvm/CodeGen/MachineModuleInfo.h @@ -153,7 +153,7 @@ public: /// BeginFunction - Begin gathering function meta information. /// - void BeginFunction(MachineFunction *MF) {} + void BeginFunction(MachineFunction *) {} /// EndFunction - Discard function meta information. /// |