OSDN Git Service

Rename PathV2 to just Path now that it is the only one.
authorRafael Espindola <rafael.espindola@gmail.com>
Wed, 26 Jun 2013 19:33:03 +0000 (19:33 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Wed, 26 Jun 2013 19:33:03 +0000 (19:33 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185015 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Support/CMakeLists.txt
lib/Support/Path.cpp [moved from lib/Support/PathV2.cpp with 99% similarity]
lib/Support/Unix/Path.inc [moved from lib/Support/Unix/PathV2.inc with 99% similarity]
lib/Support/Windows/Path.inc [moved from lib/Support/Windows/PathV2.inc with 99% similarity]

index 7d27a29..5823836 100644 (file)
@@ -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
similarity index 99%
rename from lib/Support/PathV2.cpp
rename to lib/Support/Path.cpp
index c0be6f4..8b9e60a 100644 (file)
@@ -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
similarity index 99%
rename from lib/Support/Unix/PathV2.inc
rename to lib/Support/Unix/Path.inc
index 91efcd8..94f8720 100644 (file)
@@ -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.
 //
 //===----------------------------------------------------------------------===//
 
similarity index 99%
rename from lib/Support/Windows/PathV2.inc
rename to lib/Support/Windows/Path.inc
index 6987e5f..2b24c54 100644 (file)
@@ -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.
 //
 //===----------------------------------------------------------------------===//