Added a fixme for platform specific GetDirSeparator().
authorSanjiv Gupta <sanjiv.gupta@microchip.com>
Mon, 13 Jul 2009 10:58:55 +0000 (10:58 +0000)
committerSanjiv Gupta <sanjiv.gupta@microchip.com>
Mon, 13 Jul 2009 10:58:55 +0000 (10:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75461 91177308-0d34-0410-b5e6-96231b3b80d8

tools/llvmc/example/mcc16/plugins/PIC16Base/PluginMain.cpp

index 151675f82aa583d41fe2e55bcc148ebbc9244c70..96dd296df6ef63a313dac3bbd5a34db1dde0508a 100644 (file)
@@ -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 "/";