ARM VDUPLNfq and VDUPLNfd definitions can just be Pat<>s for VDUPLN32q
[oota-llvm.git] / utils / TableGen / ClangDiagnosticsEmitter.h
index bedfe5af8f8e65cecb7f9a731e449a47abd549ea..edd062a73835b709c69060a8768be414cb585197 100644 (file)
@@ -29,9 +29,18 @@ public:
     : Records(R), Component(component) {}
 
   // run - Output the .def file contents
-  void run(std::ostream &OS);
+  void run(raw_ostream &OS);
 };
 
+class ClangDiagGroupsEmitter : public TableGenBackend {
+    RecordKeeper &Records;
+public:
+  explicit ClangDiagGroupsEmitter(RecordKeeper &R) : Records(R) {}
+    
+  void run(raw_ostream &OS);
+};
+
+  
 } // End llvm namespace
 
 #endif