1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-10 02:38:50 +00:00

llvm-mc: Default -triple to LLVM_HOSTTRIPLE.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@76260 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-07-17 22:51:20 +00:00
parent 59959cd966
commit 867aadfedf

@ -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,