From 2c607b665dbeb52e2ade86f0e1f191695290da3b Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Tue, 11 Oct 2011 20:02:52 +0000 Subject: [PATCH] Clean up a few references to System/. We still have docs/SystemLibrary.html lying around... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@141703 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/GettingStarted.html | 10 +++------- lib/Support/Disassembler.cpp | 2 +- lib/Support/IncludeFile.cpp | 2 +- lib/Support/Mutex.cpp | 2 +- lib/Support/RWMutex.cpp | 2 +- lib/Support/ThreadLocal.cpp | 2 +- 6 files changed, 8 insertions(+), 12 deletions(-) diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index d7fcc6a1fed..c8a7d2f872c 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -1502,13 +1502,9 @@ different tools.

at runtime in both interpreted and JIT compiled fashions.
llvm/lib/Support/
-
This directory contains the source code that corresponds to the header - files located in llvm/include/Support/.
- - -
llvm/lib/System/
-
This directory contains the operating system abstraction layer that - shields LLVM from platform-specific coding.
+
This directory contains the source code that corresponds to the header + files located in llvm/include/ADT/ + and llvm/include/Support/.
diff --git a/lib/Support/Disassembler.cpp b/lib/Support/Disassembler.cpp index 6362aff43a9..c6d73bcad3e 100644 --- a/lib/Support/Disassembler.cpp +++ b/lib/Support/Disassembler.cpp @@ -1,4 +1,4 @@ -//===- lib/System/Disassembler.cpp ------------------------------*- C++ -*-===// +//===- lib/Support/Disassembler.cpp -----------------------------*- C++ -*-===// // // The LLVM Compiler Infrastructure // diff --git a/lib/Support/IncludeFile.cpp b/lib/Support/IncludeFile.cpp index 5da88261ce5..e67acb3d1d6 100644 --- a/lib/Support/IncludeFile.cpp +++ b/lib/Support/IncludeFile.cpp @@ -1,4 +1,4 @@ -//===- lib/System/IncludeFile.cpp - Ensure Linking Of Implementation -----===// +//===- lib/Support/IncludeFile.cpp - Ensure Linking Of Implementation -----===// // // The LLVM Compiler Infrastructure // diff --git a/lib/Support/Mutex.cpp b/lib/Support/Mutex.cpp index b408973bbad..8874e943f4c 100644 --- a/lib/Support/Mutex.cpp +++ b/lib/Support/Mutex.cpp @@ -152,6 +152,6 @@ MutexImpl::tryacquire() #elif defined( LLVM_ON_WIN32) #include "Windows/Mutex.inc" #else -#warning Neither LLVM_ON_UNIX nor LLVM_ON_WIN32 was set in System/Mutex.cpp +#warning Neither LLVM_ON_UNIX nor LLVM_ON_WIN32 was set in Support/Mutex.cpp #endif #endif diff --git a/lib/Support/RWMutex.cpp b/lib/Support/RWMutex.cpp index fc02f9cf7c1..d0b1e10b56f 100644 --- a/lib/Support/RWMutex.cpp +++ b/lib/Support/RWMutex.cpp @@ -152,6 +152,6 @@ RWMutexImpl::writer_release() #elif defined( LLVM_ON_WIN32) #include "Windows/RWMutex.inc" #else -#warning Neither LLVM_ON_UNIX nor LLVM_ON_WIN32 was set in System/Mutex.cpp +#warning Neither LLVM_ON_UNIX nor LLVM_ON_WIN32 was set in Support/Mutex.cpp #endif #endif diff --git a/lib/Support/ThreadLocal.cpp b/lib/Support/ThreadLocal.cpp index 6b43048da15..fdb251c0a36 100644 --- a/lib/Support/ThreadLocal.cpp +++ b/lib/Support/ThreadLocal.cpp @@ -79,6 +79,6 @@ void ThreadLocalImpl::removeInstance() { #elif defined( LLVM_ON_WIN32) #include "Windows/ThreadLocal.inc" #else -#warning Neither LLVM_ON_UNIX nor LLVM_ON_WIN32 was set in System/ThreadLocal.cpp +#warning Neither LLVM_ON_UNIX nor LLVM_ON_WIN32 set in Support/ThreadLocal.cpp #endif #endif -- 2.34.1