Use llvm::sys::getHostTriple, not LLVM_HOSTTRIPLE.

llvm-svn: 81013
This commit is contained in:
Daniel Dunbar 2009-09-04 17:43:10 +00:00
parent 156fa7dde0
commit 0da4a5dcab
1 changed files with 2 additions and 2 deletions

View File

@ -2181,8 +2181,8 @@ int main(int argc, char **argv) {
ClangFrontendTimer = new llvm::Timer("Clang front-end time");
if (Verbose)
fprintf(stderr, "clang-cc version 1.0 based upon " PACKAGE_STRING
" hosted on " LLVM_HOSTTRIPLE "\n");
llvm::errs() << "clang-cc version 1.0 based upon " << PACKAGE_STRING
<< " hosted on " << llvm::sys::getHostTriple() << "\n";
// If no input was specified, read from stdin.
if (InputFilenames.empty())