diff options
author | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2009-07-13 10:58:55 +0000 |
---|---|---|
committer | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2009-07-13 10:58:55 +0000 |
commit | b134bc31be2c9f906ef5f79cc1366de1f197e25c (patch) | |
tree | b8b0c523b5549a28f2a3db27ff26c84a437a6e98 /tools/llvmc | |
parent | f935dcc26a9c30f14ae07fa0aaf27dd2cd802cbe (diff) |
Added a fixme for platform specific GetDirSeparator().
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75461 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llvmc')
-rw-r--r-- | tools/llvmc/example/mcc16/plugins/PIC16Base/PluginMain.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/llvmc/example/mcc16/plugins/PIC16Base/PluginMain.cpp b/tools/llvmc/example/mcc16/plugins/PIC16Base/PluginMain.cpp index 151675f82a..96dd296df6 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 "/"; |