1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

Rename PathV2 to just Path now that it is the only one.

llvm-svn: 185015
This commit is contained in:
Rafael Espindola 2013-06-26 19:33:03 +00:00
parent 677f305c97
commit 9edd4f6c46
4 changed files with 11 additions and 11 deletions

View File

@ -73,7 +73,7 @@ add_llvm_library(LLVMSupport
IncludeFile.cpp IncludeFile.cpp
Memory.cpp Memory.cpp
Mutex.cpp Mutex.cpp
PathV2.cpp Path.cpp
Process.cpp Process.cpp
Program.cpp Program.cpp
RWMutex.cpp RWMutex.cpp
@ -89,7 +89,7 @@ add_llvm_library(LLVMSupport
Unix/Host.inc Unix/Host.inc
Unix/Memory.inc Unix/Memory.inc
Unix/Mutex.inc Unix/Mutex.inc
Unix/PathV2.inc Unix/Path.inc
Unix/Process.inc Unix/Process.inc
Unix/Program.inc Unix/Program.inc
Unix/RWMutex.inc Unix/RWMutex.inc
@ -102,7 +102,7 @@ add_llvm_library(LLVMSupport
Windows/Host.inc Windows/Host.inc
Windows/Memory.inc Windows/Memory.inc
Windows/Mutex.inc Windows/Mutex.inc
Windows/PathV2.inc Windows/Path.inc
Windows/Process.inc Windows/Process.inc
Windows/Program.inc Windows/Program.inc
Windows/RWMutex.inc Windows/RWMutex.inc

View File

@ -1,4 +1,4 @@
//===-- PathV2.cpp - Implement OS Path Concept ------------------*- C++ -*-===// //===-- Path.cpp - Implement OS Path Concept ------------------------------===//
// //
// The LLVM Compiler Infrastructure // 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. // Include the truly platform-specific parts.
#if defined(LLVM_ON_UNIX) #if defined(LLVM_ON_UNIX)
#include "Unix/PathV2.inc" #include "Unix/Path.inc"
#endif #endif
#if defined(LLVM_ON_WIN32) #if defined(LLVM_ON_WIN32)
#include "Windows/PathV2.inc" #include "Windows/Path.inc"
#endif #endif

View 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 // 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.
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//

View 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 // 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.
// //
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//