diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-15 22:22:51 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-15 22:22:51 +0000 |
commit | 35d15bdf52e822421c706890e3df04b23b323a7c (patch) | |
tree | c8098f56a5e96b41303cbd0a07fc70440f3b9d0e /llvm/lib/System/Win32 | |
parent | 879f11df3decdb172f3767305083dad52f5a1572 (diff) | |
download | bcm5719-llvm-35d15bdf52e822421c706890e3df04b23b323a7c.tar.gz bcm5719-llvm-35d15bdf52e822421c706890e3df04b23b323a7c.zip |
Remove the CFE's lib directory from the bytecode path because LLVM should
be agnostic to the needs of any specific FE.
llvm-svn: 18969
Diffstat (limited to 'llvm/lib/System/Win32')
-rw-r--r-- | llvm/lib/System/Win32/Path.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/llvm/lib/System/Win32/Path.cpp b/llvm/lib/System/Win32/Path.cpp index 21e07c8ae13..d76dcd00176 100644 --- a/llvm/lib/System/Win32/Path.cpp +++ b/llvm/lib/System/Win32/Path.cpp @@ -156,13 +156,6 @@ Path::GetBytecodeLibraryPaths(std::vector<sys::Path>& Paths) { if (env_var != 0) { getPathList(env_var,Paths); } -#ifdef LLVMGCCDIR - { - Path tmpPath(std::string(LLVMGCCDIR) + "lib/"); - if (tmpPath.readable()) - Paths.push_back(tmpPath); - } -#endif #ifdef LLVM_LIBDIR { Path tmpPath; |