Change error message for -mtriple argument. Should finally fix #130.

This commit is contained in:
kai
2012-07-20 17:29:56 +02:00
parent b71429fc2a
commit a69c90ee6a

View File

@@ -483,7 +483,7 @@ LDC_TARGETS
theTarget = llvm::TargetRegistry::lookupTarget(triple, Err);
if (theTarget == 0)
{
error("failed to auto-select target: %s, please use the -march option", Err.c_str());
error("%s Please use the -march option.", Err.c_str());
fatal();
}
}