Change bugpoint to use Triple to make runtime decisions.
[oota-llvm.git] / tools / bugpoint / ToolRunner.h
index 0082c4463a57c8adf003b40a880f7f56c3f1f604..3e3d7d5e5acf136b5184ad1d414d4d743b951208 100644 (file)
@@ -17,6 +17,7 @@
 #ifndef BUGPOINT_TOOLRUNNER_H
 #define BUGPOINT_TOOLRUNNER_H
 
+#include "llvm/ADT/Triple.h"
 #include "llvm/Support/CommandLine.h"
 #include "llvm/Support/SystemUtils.h"
 #include <exception>
@@ -25,6 +26,7 @@
 namespace llvm {
 
 extern cl::opt<bool> SaveTemps;
+extern Triple TargetTriple;
 
 class CBE;
 class LLC;