Add an option to not print the alias of an instruction. It defaults to "print
[oota-llvm.git] / utils / TableGen / LLVMCConfigurationEmitter.h
index 98c4bc0695606f71058e7c044ec6040b01d3f462..0f2ff3719678d7000ea547c523615504f5177b7b 100644 (file)
@@ -23,10 +23,11 @@ namespace llvm {
   class LLVMCConfigurationEmitter : public TableGenBackend {
     RecordKeeper &Records;
   public:
-    explicit LLVMCConfigurationEmitter(RecordKeeper &R) : Records(R) {}
+    explicit LLVMCConfigurationEmitter(RecordKeeper &records) : 
+      Records(records) {}
 
     // run - Output the asmwriter, returning true on failure.
-    void run(std::ostream &o);
+    void run(raw_ostream &o);
   };
 }