aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2010-09-02 05:44:31 +0000
committerNick Lewycky <nicholas@mxc.ca>2010-09-02 05:44:31 +0000
commitdff316447a98d2e6a74f9127276e5f53bf3ef7bf (patch)
tree1b06431f8abf61792a78dc8b649f4fdef38df04a
parent3522e1f08bb1dc8fdc9f687ff09443808e32915c (diff)
downloadexternal_llvm-dff316447a98d2e6a74f9127276e5f53bf3ef7bf.zip
external_llvm-dff316447a98d2e6a74f9127276e5f53bf3ef7bf.tar.gz
external_llvm-dff316447a98d2e6a74f9127276e5f53bf3ef7bf.tar.bz2
Fix compile errors.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112808 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/gold/gold-plugin.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/gold/gold-plugin.cpp b/tools/gold/gold-plugin.cpp
index 858af6f..4b58fae 100644
--- a/tools/gold/gold-plugin.cpp
+++ b/tools/gold/gold-plugin.cpp
@@ -460,12 +460,12 @@ static ld_plugin_status all_symbols_read_hook(void) {
return LDPS_ERR;
}
- objFile.write(buffer, bufsize);
- objFile.close();
- if (objFile.has_error()) {
+ objFile.os().write(buffer, bufsize);
+ objFile.os().close();
+ if (objFile.os().has_error()) {
(*message)(LDPL_ERROR, "Error writing output file '%s'",
uniqueObjPath.c_str());
- objFile.clear_error();
+ objFile.os().clear_error();
return LDPS_ERR;
}
objFile.keep();