aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lto/LTOCodeGenerator.h
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2009-08-03 07:16:42 +0000
committerNick Lewycky <nicholas@mxc.ca>2009-08-03 07:16:42 +0000
commit3e4c41a84a2c0f055e2bfef48a66b5890bcfd5e5 (patch)
tree0c31b0622575251fa78416f2474110e2693247c8 /tools/lto/LTOCodeGenerator.h
parenta82f8838c60b7a3b240e185983dacb3291396f3e (diff)
downloadexternal_llvm-3e4c41a84a2c0f055e2bfef48a66b5890bcfd5e5.zip
external_llvm-3e4c41a84a2c0f055e2bfef48a66b5890bcfd5e5.tar.gz
external_llvm-3e4c41a84a2c0f055e2bfef48a66b5890bcfd5e5.tar.bz2
Remove the GCC path from libLTO. This has been superceded by setAssemblerPath.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77960 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/lto/LTOCodeGenerator.h')
-rw-r--r--tools/lto/LTOCodeGenerator.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/tools/lto/LTOCodeGenerator.h b/tools/lto/LTOCodeGenerator.h
index ef76364..0ebec2c 100644
--- a/tools/lto/LTOCodeGenerator.h
+++ b/tools/lto/LTOCodeGenerator.h
@@ -37,7 +37,6 @@ public:
bool addModule(class LTOModule*, std::string& errMsg);
bool setDebugInfo(lto_debug_model, std::string& errMsg);
bool setCodePICModel(lto_codegen_model, std::string& errMsg);
- void setGccPath(const char* path);
void setAssemblerPath(const char* path);
void addMustPreserveSymbol(const char* sym);
bool writeMergedModules(const char* path,
@@ -63,7 +62,6 @@ private:
StringSet _mustPreserveSymbols;
llvm::MemoryBuffer* _nativeObjectFile;
std::vector<const char*> _codegenOptions;
- llvm::sys::Path* _gccPath;
llvm::sys::Path* _assemblerPath;
};