diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-26 19:33:03 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-06-26 19:33:03 +0000 |
commit | f1fc3829a89a10add35d0b290757e4c3b8f70089 (patch) | |
tree | 3e4df8a489557a3a2354c2edfd9d53c13370e1e3 /llvm/lib/Support | |
parent | 6ce6309adfad868bfd699d0d432b77be2c256d10 (diff) | |
download | bcm5719-llvm-f1fc3829a89a10add35d0b290757e4c3b8f70089.tar.gz bcm5719-llvm-f1fc3829a89a10add35d0b290757e4c3b8f70089.zip |
Rename PathV2 to just Path now that it is the only one.
llvm-svn: 185015
Diffstat (limited to 'llvm/lib/Support')
-rw-r--r-- | llvm/lib/Support/CMakeLists.txt | 6 | ||||
-rw-r--r-- | llvm/lib/Support/Path.cpp (renamed from llvm/lib/Support/PathV2.cpp) | 8 | ||||
-rw-r--r-- | llvm/lib/Support/Unix/Path.inc (renamed from llvm/lib/Support/Unix/PathV2.inc) | 4 | ||||
-rw-r--r-- | llvm/lib/Support/Windows/Path.inc (renamed from llvm/lib/Support/Windows/PathV2.inc) | 4 |
4 files changed, 11 insertions, 11 deletions
diff --git a/llvm/lib/Support/CMakeLists.txt b/llvm/lib/Support/CMakeLists.txt index 7d27a291399..58238365853 100644 --- a/llvm/lib/Support/CMakeLists.txt +++ b/llvm/lib/Support/CMakeLists.txt @@ -73,7 +73,7 @@ add_llvm_library(LLVMSupport IncludeFile.cpp Memory.cpp Mutex.cpp - PathV2.cpp + Path.cpp Process.cpp Program.cpp RWMutex.cpp @@ -89,7 +89,7 @@ add_llvm_library(LLVMSupport Unix/Host.inc Unix/Memory.inc Unix/Mutex.inc - Unix/PathV2.inc + Unix/Path.inc Unix/Process.inc Unix/Program.inc Unix/RWMutex.inc @@ -102,7 +102,7 @@ add_llvm_library(LLVMSupport Windows/Host.inc Windows/Memory.inc Windows/Mutex.inc - Windows/PathV2.inc + Windows/Path.inc Windows/Process.inc Windows/Program.inc Windows/RWMutex.inc diff --git a/llvm/lib/Support/PathV2.cpp b/llvm/lib/Support/Path.cpp index c0be6f4ea16..8b9e60a2d9e 100644 --- a/llvm/lib/Support/PathV2.cpp +++ b/llvm/lib/Support/Path.cpp @@ -1,4 +1,4 @@ -//===-- PathV2.cpp - Implement OS Path Concept ------------------*- C++ -*-===// +//===-- Path.cpp - Implement OS Path Concept ------------------------------===// // // The LLVM Compiler Infrastructure // @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// // -// This file implements the operating system PathV2 API. +// This file implements the operating system Path API. // //===----------------------------------------------------------------------===// @@ -962,8 +962,8 @@ error_code directory_entry::status(file_status &result) const { // Include the truly platform-specific parts. #if defined(LLVM_ON_UNIX) -#include "Unix/PathV2.inc" +#include "Unix/Path.inc" #endif #if defined(LLVM_ON_WIN32) -#include "Windows/PathV2.inc" +#include "Windows/Path.inc" #endif diff --git a/llvm/lib/Support/Unix/PathV2.inc b/llvm/lib/Support/Unix/Path.inc index 91efcd80233..94f872077a5 100644 --- a/llvm/lib/Support/Unix/PathV2.inc +++ b/llvm/lib/Support/Unix/Path.inc @@ -1,4 +1,4 @@ -//===- llvm/Support/Unix/PathV2.cpp - Unix Path Implementation --*- C++ -*-===// +//===- llvm/Support/Unix/Path.inc - Unix Path Implementation ----*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// // -// This file implements the Unix specific implementation of the PathV2 API. +// This file implements the Unix specific implementation of the Path API. // //===----------------------------------------------------------------------===// diff --git a/llvm/lib/Support/Windows/PathV2.inc b/llvm/lib/Support/Windows/Path.inc index 6987e5fc9da..2b24c5487f0 100644 --- a/llvm/lib/Support/Windows/PathV2.inc +++ b/llvm/lib/Support/Windows/Path.inc @@ -1,4 +1,4 @@ -//===- llvm/Support/Windows/PathV2.inc - Windows Path Impl ------*- C++ -*-===// +//===- llvm/Support/Windows/Path.inc - Windows Path Impl --------*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -7,7 +7,7 @@ // //===----------------------------------------------------------------------===// // -// This file implements the Windows specific implementation of the PathV2 API. +// This file implements the Windows specific implementation of the Path API. // //===----------------------------------------------------------------------===// |