changeset 649:505f41873d4f

Automated merge with http://hg.dsource.org/projects/llvmdc
author Christian Kamm <kamm incasoftware de>
date Sun, 05 Oct 2008 11:47:59 +0200
parents 669a2c84f4e4 (diff) 8d850fa25713 (current diff)
children aa6a0b7968f7
files
diffstat 2 files changed, 0 insertions(+), 76 deletions(-) [+]
line wrap: on
line diff
--- a/gen/runtime.cpp	Sun Oct 05 11:47:47 2008 +0200
+++ b/gen/runtime.cpp	Sun Oct 05 11:47:59 2008 +0200
@@ -1,5 +1,3 @@
-#include <cassert>
-
 #include "gen/llvm.h"
 #include "llvm/Module.h"
 #include "llvm/Bitcode/ReaderWriter.h"
--- a/runtime/llvmdc.diff	Sun Oct 05 11:47:47 2008 +0200
+++ b/runtime/llvmdc.diff	Sun Oct 05 11:47:59 2008 +0200
@@ -12,28 +12,6 @@
      static int opApply( int delegate( inout ModuleInfo ) );
  }
  
-Index: lib/common/tango/core/Exception.d
-===================================================================
---- lib/common/tango/core/Exception.d	(revision 3954)
-+++ lib/common/tango/core/Exception.d	(working copy)
-@@ -223,7 +223,7 @@
- /**
-  * The basic exception thrown by the tango.io.vfs package.
-  */
--private class VfsException : IOException
-+class VfsException : IOException
- {
-     this( char[] msg )
-     {
-@@ -234,7 +234,7 @@
- /**
-  * The basic exception thrown by the tango.io.cluster package.
-  */
--private class ClusterException : IOException
-+class ClusterException : IOException
- {
-     this( char[] msg )
-     {
 Index: lib/common/tango/core/BitManip.d
 ===================================================================
 --- lib/common/tango/core/BitManip.d	(revision 3954)
@@ -364,19 +342,6 @@
                          int[64] intargs = void;
                          byte[64] byteargs = void;
                          long[64] longargs = void;
-Index: tango/io/vfs/model/Vfs.d
-===================================================================
---- tango/io/vfs/model/Vfs.d	(revision 3954)
-+++ tango/io/vfs/model/Vfs.d	(working copy)
-@@ -38,7 +38,7 @@
- 
- *******************************************************************************/
- 
--private struct VfsStats
-+struct VfsStats
- {
-         ulong   bytes;                  // byte count of files
-         uint    files,                  // number of files
 Index: tango/core/Vararg.d
 ===================================================================
 --- tango/core/Vararg.d	(revision 3954)
@@ -713,19 +678,6 @@
  }
  
  debug(UnitTest) {
-Index: tango/math/internal/BignumX86.d
-===================================================================
---- tango/math/internal/BignumX86.d	(revision 3954)
-+++ tango/math/internal/BignumX86.d	(working copy)
-@@ -56,6 +56,8 @@
- private:
- version(GNU) {
-     // GDC is a filthy liar. It can't actually do inline asm.
-+} else version(LLVMDC) {
-+    // I guess the same goes for llvmdc to some extent :(
- } else version(D_InlineAsm_X86) {
- /* Duplicate string s, with n times, substituting index for '@'.
-  *
 Index: tango/stdc/stdlib.d
 ===================================================================
 --- tango/stdc/stdlib.d	(revision 3954)
@@ -757,29 +709,3 @@
  else
  {
      alias void* va_list;
-Index: tango/util/log/Log.d
-===================================================================
---- tango/util/log/Log.d	(revision 3954)
-+++ tango/util/log/Log.d	(working copy)
-@@ -1275,7 +1275,7 @@
- 
- *******************************************************************************/
- 
--private struct LogEvent
-+struct LogEvent
- {
-         private char[]          msg_,
-                                 name_;
-Index: tango/time/chrono/GregorianBased.d
-===================================================================
---- tango/time/chrono/GregorianBased.d	(revision 3954)
-+++ tango/time/chrono/GregorianBased.d	(working copy)
-@@ -21,7 +21,7 @@
- 
- 
- 
--private class GregorianBased : Gregorian {
-+class GregorianBased : Gregorian {
- 
-   private EraRange[] eraRanges_;
-   private int maxYear_, minYear_;