[llvm-commits] CVS: llvm/lib/System/Win32/Path.cpp

Reid Spencer reid at x10sys.com
Wed Dec 15 14:23:01 PST 2004



Changes in directory llvm/lib/System/Win32:

Path.cpp updated: 1.18 -> 1.19
---
Log message:

Remove the CFE's lib directory from the bytecode path because LLVM should
be agnostic to the needs of any specific FE.


---
Diffs of the changes:  (+0 -7)

Index: llvm/lib/System/Win32/Path.cpp
diff -u llvm/lib/System/Win32/Path.cpp:1.18 llvm/lib/System/Win32/Path.cpp:1.19
--- llvm/lib/System/Win32/Path.cpp:1.18	Wed Dec 15 02:32:45 2004
+++ llvm/lib/System/Win32/Path.cpp	Wed Dec 15 16:22:51 2004
@@ -156,13 +156,6 @@
   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;






More information about the llvm-commits mailing list