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 | 24ac21f937517d7e1e3190c419541c11cba1962c (patch) | |
tree | d3f21182492c5cd660dc5058bcd6c4e902f8eacb /lib/System/Win32/Path.inc | |
parent | 835b6941fdeb4caf1a00dbb25df8a71c3431b115 (diff) | |
download | external_llvm-24ac21f937517d7e1e3190c419541c11cba1962c.zip external_llvm-24ac21f937517d7e1e3190c419541c11cba1962c.tar.gz external_llvm-24ac21f937517d7e1e3190c419541c11cba1962c.tar.bz2 |
Remove the CFE's lib directory from the bytecode path because LLVM should
be agnostic to the needs of any specific FE.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18969 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Win32/Path.inc')
-rw-r--r-- | lib/System/Win32/Path.inc | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/System/Win32/Path.inc b/lib/System/Win32/Path.inc index 21e07c8..d76dcd0 100644 --- a/lib/System/Win32/Path.inc +++ b/lib/System/Win32/Path.inc @@ -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; |