[llvm-commits] [llvm] r141703 - in /llvm/trunk: docs/GettingStarted.html lib/Support/Disassembler.cpp lib/Support/IncludeFile.cpp lib/Support/Mutex.cpp lib/Support/RWMutex.cpp lib/Support/ThreadLocal.cpp
Daniel Dunbar
daniel at zuster.org
Tue Oct 11 13:02:53 PDT 2011
Author: ddunbar
Date: Tue Oct 11 15:02:52 2011
New Revision: 141703
URL: http://llvm.org/viewvc/llvm-project?rev=141703&view=rev
Log:
Clean up a few references to System/. We still have docs/SystemLibrary.html
lying around...
Modified:
llvm/trunk/docs/GettingStarted.html
llvm/trunk/lib/Support/Disassembler.cpp
llvm/trunk/lib/Support/IncludeFile.cpp
llvm/trunk/lib/Support/Mutex.cpp
llvm/trunk/lib/Support/RWMutex.cpp
llvm/trunk/lib/Support/ThreadLocal.cpp
Modified: llvm/trunk/docs/GettingStarted.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/GettingStarted.html?rev=141703&r1=141702&r2=141703&view=diff
==============================================================================
--- llvm/trunk/docs/GettingStarted.html (original)
+++ llvm/trunk/docs/GettingStarted.html Tue Oct 11 15:02:52 2011
@@ -1502,13 +1502,9 @@
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>
Modified: llvm/trunk/lib/Support/Disassembler.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Disassembler.cpp?rev=141703&r1=141702&r2=141703&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Disassembler.cpp (original)
+++ llvm/trunk/lib/Support/Disassembler.cpp Tue Oct 11 15:02:52 2011
@@ -1,4 +1,4 @@
-//===- lib/System/Disassembler.cpp ------------------------------*- C++ -*-===//
+//===- lib/Support/Disassembler.cpp -----------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
Modified: llvm/trunk/lib/Support/IncludeFile.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/IncludeFile.cpp?rev=141703&r1=141702&r2=141703&view=diff
==============================================================================
--- llvm/trunk/lib/Support/IncludeFile.cpp (original)
+++ llvm/trunk/lib/Support/IncludeFile.cpp Tue Oct 11 15:02:52 2011
@@ -1,4 +1,4 @@
-//===- lib/System/IncludeFile.cpp - Ensure Linking Of Implementation -----===//
+//===- lib/Support/IncludeFile.cpp - Ensure Linking Of Implementation -----===//
//
// The LLVM Compiler Infrastructure
//
Modified: llvm/trunk/lib/Support/Mutex.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Mutex.cpp?rev=141703&r1=141702&r2=141703&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Mutex.cpp (original)
+++ llvm/trunk/lib/Support/Mutex.cpp Tue Oct 11 15:02:52 2011
@@ -152,6 +152,6 @@
#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
Modified: llvm/trunk/lib/Support/RWMutex.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/RWMutex.cpp?rev=141703&r1=141702&r2=141703&view=diff
==============================================================================
--- llvm/trunk/lib/Support/RWMutex.cpp (original)
+++ llvm/trunk/lib/Support/RWMutex.cpp Tue Oct 11 15:02:52 2011
@@ -152,6 +152,6 @@
#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
Modified: llvm/trunk/lib/Support/ThreadLocal.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/ThreadLocal.cpp?rev=141703&r1=141702&r2=141703&view=diff
==============================================================================
--- llvm/trunk/lib/Support/ThreadLocal.cpp (original)
+++ llvm/trunk/lib/Support/ThreadLocal.cpp Tue Oct 11 15:02:52 2011
@@ -79,6 +79,6 @@
#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
More information about the llvm-commits
mailing list