diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-10-11 20:02:52 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-10-11 20:02:52 +0000 |
commit | 037fc9311ad6c7254be49c2e061b30d552266870 (patch) | |
tree | db760b22ac2265bd4637daad0b8eed3cfdf0d0b7 | |
parent | 55dbf03e408094d47afe508f55a5b8daffb3cfe8 (diff) | |
download | bcm5719-llvm-037fc9311ad6c7254be49c2e061b30d552266870.tar.gz bcm5719-llvm-037fc9311ad6c7254be49c2e061b30d552266870.zip |
Clean up a few references to System/. We still have docs/SystemLibrary.html
lying around...
llvm-svn: 141703
-rw-r--r-- | llvm/docs/GettingStarted.html | 10 | ||||
-rw-r--r-- | llvm/lib/Support/Disassembler.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Support/IncludeFile.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Support/Mutex.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Support/RWMutex.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Support/ThreadLocal.cpp | 2 |
6 files changed, 8 insertions, 12 deletions
diff --git a/llvm/docs/GettingStarted.html b/llvm/docs/GettingStarted.html index d7fcc6a1fed..c8a7d2f872c 100644 --- a/llvm/docs/GettingStarted.html +++ b/llvm/docs/GettingStarted.html @@ -1502,13 +1502,9 @@ different <a href="#tools">tools</a>.</p> at runtime in both interpreted and JIT compiled fashions.</dd> <dt><tt><b>llvm/lib/Support/</b></tt></dt> - <dd> This directory contains the source code that corresponds to the header - files located in <tt>llvm/include/Support/</tt>.</dd> - - <!--FIXME: obsoleted --> - <dt><tt><b>llvm/lib/System/</b></tt></dt> - <dd>This directory contains the operating system abstraction layer that - shields LLVM from platform-specific coding.</dd> + <dd> This directory contains the source code that corresponds to the header + files located in <tt>llvm/include/ADT/</tt> + and <tt>llvm/include/Support/</tt>.</dd> </dl> </div> diff --git a/llvm/lib/Support/Disassembler.cpp b/llvm/lib/Support/Disassembler.cpp index 6362aff43a9..c6d73bcad3e 100644 --- a/llvm/lib/Support/Disassembler.cpp +++ b/llvm/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/llvm/lib/Support/IncludeFile.cpp b/llvm/lib/Support/IncludeFile.cpp index 5da88261ce5..e67acb3d1d6 100644 --- a/llvm/lib/Support/IncludeFile.cpp +++ b/llvm/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/llvm/lib/Support/Mutex.cpp b/llvm/lib/Support/Mutex.cpp index b408973bbad..8874e943f4c 100644 --- a/llvm/lib/Support/Mutex.cpp +++ b/llvm/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/llvm/lib/Support/RWMutex.cpp b/llvm/lib/Support/RWMutex.cpp index fc02f9cf7c1..d0b1e10b56f 100644 --- a/llvm/lib/Support/RWMutex.cpp +++ b/llvm/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/llvm/lib/Support/ThreadLocal.cpp b/llvm/lib/Support/ThreadLocal.cpp index 6b43048da15..fdb251c0a36 100644 --- a/llvm/lib/Support/ThreadLocal.cpp +++ b/llvm/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 |