From: Sanjiv Gupta Date: Mon, 13 Jul 2009 10:58:55 +0000 (+0000) Subject: Added a fixme for platform specific GetDirSeparator(). X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b134bc31be2c9f906ef5f79cc1366de1f197e25c;p=oota-llvm.git Added a fixme for platform specific GetDirSeparator(). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75461 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/llvmc/example/mcc16/plugins/PIC16Base/PluginMain.cpp b/tools/llvmc/example/mcc16/plugins/PIC16Base/PluginMain.cpp index 151675f82aa..96dd296df6e 100644 --- a/tools/llvmc/example/mcc16/plugins/PIC16Base/PluginMain.cpp +++ b/tools/llvmc/example/mcc16/plugins/PIC16Base/PluginMain.cpp @@ -10,6 +10,8 @@ namespace llvmc { } // Returns the platform specific directory separator via #ifdefs. +// FIXME: This currently work on linux and windows only. It does not +// work on other unices. static std::string GetDirSeparator(void) { #ifdef __linux__ return "/";