Silence -Wsign-compare warnings from GCC.
[oota-llvm.git] / lib / VMCore / PrintModulePass.cpp
index 2ee49d235963c26eb9575a28ecf6c77da2aefbfa..1f1fbc91bc31a4eeb388792335ed4c7f35fb947e 100644 (file)
@@ -78,10 +78,10 @@ namespace {
 
 char PrintModulePass::ID = 0;
 INITIALIZE_PASS(PrintModulePass, "print-module",
-                "Print module to stderr", false, false);
+                "Print module to stderr", false, false)
 char PrintFunctionPass::ID = 0;
 INITIALIZE_PASS(PrintFunctionPass, "print-function",
-                "Print function to stderr", false, false);
+                "Print function to stderr", false, false)
 
 /// createPrintModulePass - Create and return a pass that writes the
 /// module to the specified raw_ostream.