Put comma in correct place for call to StructType::get
[oota-llvm.git] / utils / TableGen / TableGen.cpp
index d6e84609f430aa961d5fd1d35260b3f6a4ce4acc..c6692f805bacef30d16b40199e8092542db3c09b 100644 (file)
@@ -212,6 +212,13 @@ int main(int argc, char **argv) {
       std::remove(OutputFilename.c_str());    // Remove the file, it's broken
     }
     return 1;
+  } catch (const char *Error) {
+    cerr << argv[0] << ": " << Error << "\n";
+    if (Out != cout.stream()) {
+      delete Out;                             // Close the file
+      std::remove(OutputFilename.c_str());    // Remove the file, it's broken
+    }
+    return 1;
   } catch (...) {
     cerr << argv[0] << ": Unknown unexpected exception occurred.\n";
     if (Out != cout.stream()) {