summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/AsmPrinter.h
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-02-17 23:55:26 +0000
committerEric Christopher <echristo@apple.com>2010-02-17 23:55:26 +0000
commit49cf3a71734b4dc6545c279fb8236bef5758b2d5 (patch)
tree4a164a6b07d6caf7b025764b4218f9bb75403c4d /include/llvm/CodeGen/AsmPrinter.h
parenteb3804e39a76a267f13e72a00695f5b18c75b932 (diff)
downloadllvm-49cf3a71734b4dc6545c279fb8236bef5758b2d5.tar.gz
llvm-49cf3a71734b4dc6545c279fb8236bef5758b2d5.tar.bz2
llvm-49cf3a71734b4dc6545c279fb8236bef5758b2d5.tar.xz
Fix a few unused parameter warnings.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@96533 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/AsmPrinter.h')
-rw-r--r--include/llvm/CodeGen/AsmPrinter.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/AsmPrinter.h b/include/llvm/CodeGen/AsmPrinter.h
index d4e8887288..8ade1bd64a 100644
--- a/include/llvm/CodeGen/AsmPrinter.h
+++ b/include/llvm/CodeGen/AsmPrinter.h
@@ -223,7 +223,7 @@ namespace llvm {
void EmitFunctionBody();
/// EmitInstruction - Targets should implement this to emit instructions.
- virtual void EmitInstruction(const MachineInstr *MI) {
+ virtual void EmitInstruction(const MachineInstr *) {
assert(0 && "EmitInstruction not implemented");
}