[llvm-commits] [parallel] CVS: llvm/tools/llvm-ar/llvm-ar.cpp
Misha Brukman
brukman at cs.uiuc.edu
Mon Mar 1 20:51:07 PST 2004
Changes in directory llvm/tools/llvm-ar:
llvm-ar.cpp updated: 1.10 -> 1.10.2.1
---
Log message:
Merge from trunk
---
Diffs of the changes: (+3 -2)
Index: llvm/tools/llvm-ar/llvm-ar.cpp
diff -u llvm/tools/llvm-ar/llvm-ar.cpp:1.10 llvm/tools/llvm-ar/llvm-ar.cpp:1.10.2.1
--- llvm/tools/llvm-ar/llvm-ar.cpp:1.10 Tue Dec 30 01:45:46 2003
+++ llvm/tools/llvm-ar/llvm-ar.cpp Mon Mar 1 17:59:18 2004
@@ -15,6 +15,7 @@
#include "llvm/Bytecode/Reader.h"
#include "Support/CommandLine.h"
#include "Support/FileUtilities.h"
+#include "Support/Signals.h"
#include <string>
#include <fstream>
#include <cstdio>
@@ -544,9 +545,9 @@
}
int main(int argc, char **argv) {
-
- //Parse Command line options
cl::ParseCommandLineOptions(argc, argv);
+ PrintStackTraceOnErrorSignal();
+
parseCL();
//Create archive!
More information about the llvm-commits
mailing list