llvm-mc: Default -triple to LLVM_HOSTTRIPLE.

llvm-svn: 76260
This commit is contained in:
Daniel Dunbar 2009-07-17 22:51:20 +00:00
parent c3fd33014c
commit 7b1a4c18ea
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ IncludeDirs("I", cl::desc("Directory of include files"),
static cl::opt<std::string>
Triple("triple", cl::desc("Target triple to assemble for,"
"see -version for available targets"),
cl::init(""));
cl::init(LLVM_HOSTTRIPLE));
enum ActionType {
AC_AsLex,