aboutsummaryrefslogtreecommitdiff
path: root/lib/System/Path.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/System/Path.cpp')
-rw-r--r--lib/System/Path.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/lib/System/Path.cpp b/lib/System/Path.cpp
index dd0f275d7d..3187bfee59 100644
--- a/lib/System/Path.cpp
+++ b/lib/System/Path.cpp
@@ -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