summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-11-10 15:06:00 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-11-10 15:06:00 +0000
commitb39a89716f3756586105935e40a4a406cb3e2ec6 (patch)
tree6b6c0517b54ea5953da3d8fc2a86da481b1743f2
parent885f18cddf3d535421fb38e85c4b6544f4504487 (diff)
downloadbcm5719-llvm-b39a89716f3756586105935e40a4a406cb3e2ec6.tar.gz
bcm5719-llvm-b39a89716f3756586105935e40a4a406cb3e2ec6.zip
Fix Whitespace.
llvm-svn: 118683
-rw-r--r--llvm/lib/System/Win32/Path.inc12
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/lib/System/Win32/Path.inc b/llvm/lib/System/Win32/Path.inc
index 66e50acaea3..8990a420a02 100644
--- a/llvm/lib/System/Win32/Path.inc
+++ b/llvm/lib/System/Win32/Path.inc
@@ -288,7 +288,7 @@ Path::GetBitcodeLibraryPaths(std::vector<sys::Path>& Paths) {
Path
Path::GetLLVMDefaultConfigDir() {
Path ret = GetUserHomeDirectory();
- if(!ret.appendComponent(".llvm"))
+ if (!ret.appendComponent(".llvm"))
assert(0 && "Failed to append .llvm");
return ret;
}
@@ -296,11 +296,11 @@ Path::GetLLVMDefaultConfigDir() {
Path
Path::GetUserHomeDirectory() {
char buff[MAX_PATH];
- HRESULT res = SHGetFolderPathA(NULL,
- CSIDL_FLAG_CREATE | CSIDL_APPDATA,
- NULL,
- SHGFP_TYPE_CURRENT,
- buff);
+ HRESULT res = SHGetFolderPathA(NULL,
+ CSIDL_FLAG_CREATE | CSIDL_APPDATA,
+ NULL,
+ SHGFP_TYPE_CURRENT,
+ buff);
if (res != S_OK)
assert(0 && "Failed to get user home directory");
return Path(buff);
OpenPOWER on IntegriCloud