Added a fixme for platform specific GetDirSeparator().

llvm-svn: 75461
This commit is contained in:
Sanjiv Gupta 2009-07-13 10:58:55 +00:00
parent ed5db9dd30
commit 63bdb56274
1 changed files with 2 additions and 0 deletions

View 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 "/";