diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-11-19 22:39:21 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-11-19 22:39:21 +0000 |
commit | f6ab47038cf8fea9611625ce97b267f7ce2957d6 (patch) | |
tree | b0ef003a6d65cff755398ff77f05d7939dbefaf7 /llvm/tools/gold/gold-plugin.cpp | |
parent | ccb68b487e06c3744f8e4b25267d4a23ce90fd62 (diff) | |
download | bcm5719-llvm-f6ab47038cf8fea9611625ce97b267f7ce2957d6.tar.gz bcm5719-llvm-f6ab47038cf8fea9611625ce97b267f7ce2957d6.zip |
gold-plugin: Fix typo in error message
Spotted while reading code.
llvm-svn: 222395
Diffstat (limited to 'llvm/tools/gold/gold-plugin.cpp')
-rw-r--r-- | llvm/tools/gold/gold-plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/tools/gold/gold-plugin.cpp b/llvm/tools/gold/gold-plugin.cpp index 9905d489b55..cfda6d2d464 100644 --- a/llvm/tools/gold/gold-plugin.cpp +++ b/llvm/tools/gold/gold-plugin.cpp @@ -723,7 +723,7 @@ static void codegen(Module &M) { std::error_code EC = sys::fs::createTemporaryFile("lto-llvm", "o", FD, Filename); if (EC) - message(LDPL_FATAL, "Could not create temorary file: %s", + message(LDPL_FATAL, "Could not create temporary file: %s", EC.message().c_str()); } else { Filename = options::obj_path; |