OSDN Git Service

For PR351:
authorReid Spencer <rspencer@reidspencer.com>
Fri, 24 Dec 2004 06:29:17 +0000 (06:29 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 24 Dec 2004 06:29:17 +0000 (06:29 +0000)
Use the LLVM_ON_UNIX and LLVM_ON_WIN32 #defines to include the implementation
instead of relying upon the "platform" link

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19132 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Path.cpp

index dd0f275..3187bfe 100644 (file)
@@ -99,6 +99,12 @@ Path::GetDLLSuffix() {
 }
 
 // Include the truly platform-specific parts of this class.
-#include "platform/Path.cpp"
+
+#if defined(LLVM_ON_UNIX)
+#include "Unix/Path.cpp"
+#endif
+#if defined(LLVM_ON_WIN32)
+#include "Win32/Path.cpp"
+#endif
 
 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab