summaryrefslogtreecommitdiffstats
path: root/llvm/tools/gold/gold-plugin.cpp
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-02-05 05:36:01 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-02-05 05:36:01 +0000
commit9f694e4b3b7e11214d7954606b232a54b230bb6d (patch)
tree3fdc237843f251b87e47d59160df84188dc1a089 /llvm/tools/gold/gold-plugin.cpp
parent3f0e0a6dea033fac0ab47a27342a30e20e62fa49 (diff)
downloadbcm5719-llvm-9f694e4b3b7e11214d7954606b232a54b230bb6d.tar.gz
bcm5719-llvm-9f694e4b3b7e11214d7954606b232a54b230bb6d.zip
It's not obvious, but lto_module_create_from_memory doesn't need to use the
buffer after it creates the Module. Thus, we don't need to store this pointer in claimed_file. llvm-svn: 63834
Diffstat (limited to 'llvm/tools/gold/gold-plugin.cpp')
-rw-r--r--llvm/tools/gold/gold-plugin.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/llvm/tools/gold/gold-plugin.cpp b/llvm/tools/gold/gold-plugin.cpp
index 6f579fe370e..d41cd812bc9 100644
--- a/llvm/tools/gold/gold-plugin.cpp
+++ b/llvm/tools/gold/gold-plugin.cpp
@@ -45,7 +45,6 @@ namespace {
struct claimed_file {
lto_module_t M;
void *handle;
- void *buf;
std::vector<ld_plugin_symbol> syms;
};
@@ -197,7 +196,6 @@ ld_plugin_status claim_file_hook(const ld_plugin_input_file *file,
cf.M = buf ? lto_module_create_from_memory(buf, file->filesize) :
lto_module_create(file->name);
- cf.buf = buf;
if (!cf.M) {
(*message)(LDPL_ERROR, "Failed to create LLVM module: %s",
lto_get_error_message());
@@ -334,10 +332,6 @@ ld_plugin_status all_symbols_read_hook(void) {
objFile->close();
lto_codegen_dispose(cg);
- for (std::list<claimed_file>::iterator I = Modules.begin(),
- E = Modules.end(); I != E; ++I) {
- free(I->buf);
- }
if ((*add_input_file)(const_cast<char*>(uniqueObjPath.c_str())) != LDPS_OK) {
(*message)(LDPL_ERROR, "Unable to add .o file to the link.");
OpenPOWER on IntegriCloud