log

age author description
Fri, 29 Aug 2008 16:35:46 +0200 Tomas Lindquist Olsen The latest patch broke things for non OS X
Fri, 29 Aug 2008 15:01:48 +0200 Christian Kamm Make rt_stackBottom return the right fixed value for darwin.
Fri, 29 Aug 2008 14:48:40 +0200 Christian Kamm Merge rest of patch from #72.
Fri, 29 Aug 2008 14:16:18 +0200 Christian Kamm Enable unwind code on darwin.
Fri, 29 Aug 2008 14:11:20 +0200 Christian Kamm Link in pthread, dl and m on OS X.
Fri, 29 Aug 2008 14:10:19 +0200 Christian Kamm Add .DS_Store to .hgignore
Thu, 28 Aug 2008 20:17:21 +0200 Christian Kamm Always call finalizer for stack classes. Checking for the number of
Thu, 28 Aug 2008 20:15:36 +0200 Christian Kamm Do not assert on non-existing supposed globals. (see nocompile/union_12,14)
Thu, 28 Aug 2008 08:37:47 +0200 Christian Kamm Fix findregressions and makewebstatistics to adhere to our definition of
Tue, 26 Aug 2008 21:06:12 +0200 Tomas Lindquist Olsen removed use on removed switches in gc makefile
Tue, 26 Aug 2008 21:02:25 +0200 Tomas Lindquist Olsen Removed unimplemented switches.
Tue, 26 Aug 2008 20:50:42 +0200 Christian Kamm Disable invariants for the gc. Makes collections not take ages again.
Tue, 26 Aug 2008 20:49:01 +0200 Christian Kamm Do not set Dversion to 1. Dversion = 2 means we use post 1.000 additions to D1.
Tue, 26 Aug 2008 19:31:47 +0200 Christian Kamm Add -enable/-disable for specific features.
Mon, 25 Aug 2008 19:36:27 +0200 Tomas Lindquist Olsen Removed D_InlineAsm and D_InlineAsm_X86 versions.
Sun, 24 Aug 2008 18:25:45 +0200 Christian Kamm Automated merge with http://hg.dsource.org/projects/llvmdc
Sun, 24 Aug 2008 18:25:34 +0200 Christian Kamm Disable boehm gc by default. Use --enable-boehm-gc on premake to enable.
Sun, 24 Aug 2008 18:11:08 +0200 Tomas Lindquist Olsen missing || __APPLE__ in monitor.c
Sun, 24 Aug 2008 17:57:53 +0200 Tomas Lindquist Olsen Missing 'break' in osx code path.
Sun, 24 Aug 2008 17:19:31 +0200 Tomas Lindquist Olsen Fixed some osx mistakes.
Sun, 24 Aug 2008 17:13:40 +0200 Tomas Lindquist Olsen Gah, missed something still. I'll test properly next time ;)
Sun, 24 Aug 2008 17:11:02 +0200 Tomas Lindquist Olsen Made a small mistake in the Tango patch
Sun, 24 Aug 2008 17:02:03 +0200 Christian Kamm Automated merge with http://hg.dsource.org/projects/llvmdc
Sun, 24 Aug 2008 17:01:40 +0200 Christian Kamm Don't use -u in build.sh; not all cp implementations support it.
Sun, 24 Aug 2008 16:59:08 +0200 Christian Kamm Add isnan for __APPLE__ and darwin version ident for OSX.
Sun, 24 Aug 2008 16:54:06 +0200 Jacob Carlborg Add __APPLE__ to most #if linux compile time switches.
Sun, 24 Aug 2008 16:22:58 +0200 Christian Kamm Get rid of isLinux and isWindows in favor of global.params.os.
Sun, 24 Aug 2008 16:51:17 +0200 Tomas Lindquist Olsen Reverted some changes in the Tango patch, splitting asm block is simply not supported by llvm.
Thu, 21 Aug 2008 15:35:39 +0200 Tomas Lindquist Olsen merge
Thu, 21 Aug 2008 15:35:24 +0200 Tomas Lindquist Olsen Updated the tango patch, removed some now unnecessarily complex inline asm.
Thu, 21 Aug 2008 15:19:45 +0200 Christian Kamm Make class invariants work.
Wed, 20 Aug 2008 19:03:28 +0200 Tomas Lindquist Olsen Updated tango patch, with rewrittten Atomics using llvm atomic intrinsics.
Wed, 20 Aug 2008 19:01:56 +0200 Tomas Lindquist Olsen Fixed problem with parameterized intrinsics taking bools.
Wed, 20 Aug 2008 01:02:22 +0200 Tomas Lindquist Olsen Added support for overloaded intrinsics.
Tue, 19 Aug 2008 20:18:01 +0200 Tomas Lindquist Olsen First step towards D abi compliance.
Sun, 17 Aug 2008 13:16:35 +0200 Christian Kamm Fix binops change for OpAssign.
Sun, 17 Aug 2008 12:21:53 +0200 Christian Kamm Binary ops had the wrong result type for real op imaginary.
Sun, 17 Aug 2008 11:39:36 +0200 Christian Kamm Abstract functions may have bodies.
Sat, 16 Aug 2008 19:29:56 +0200 Christian Kamm Fix TypeInfo_Tuple array initialization.
Sat, 16 Aug 2008 14:01:23 +0200 Christian Kamm Do not need to allocate temporary for function literal.
Sat, 16 Aug 2008 13:33:37 +0200 Christian Kamm Fix function literals. They never carry a context.
Sat, 16 Aug 2008 12:38:53 +0200 Christian Kamm Don't assert on empty foreach body.
Sat, 16 Aug 2008 12:32:22 +0200 Christian Kamm Prevent cast error for cast(void) around expression statements.
Sat, 16 Aug 2008 11:19:34 +0200 Christian Kamm Fix continue inside dowhile statements.
Sat, 16 Aug 2008 10:48:25 +0200 Christian Kamm Fix delegate equality.
Fri, 15 Aug 2008 23:15:21 +0200 Christian Kamm Get rid of module declaration for one of the tests I added. Would confuse mini test runner.
Fri, 15 Aug 2008 23:13:55 +0200 Christian Kamm Add test case for broken delegates. Also still needs fixing!
Fri, 15 Aug 2008 23:11:59 +0200 Christian Kamm Add minitest for broken empty template tuple parameters. Fix this one!
Fri, 15 Aug 2008 22:41:47 +0200 Christian Kamm Add interface comparison to EqualExp: just do pointer comparison.
Fri, 15 Aug 2008 05:08:33 +0200 Tomas Lindquist Olsen Fixed problem when instantiating a template with private global variables.
Thu, 14 Aug 2008 06:55:41 +0200 Tomas Lindquist Olsen Merged DMD 1.034, array operations are not yet implemented ;)
Thu, 14 Aug 2008 03:09:26 +0200 Tomas Lindquist Olsen Fixed mini/missingti.d
Wed, 13 Aug 2008 23:54:09 +0200 Christian Kamm Reverted bad change [506]. Added test case for remaining bug.
Wed, 13 Aug 2008 22:31:46 +0200 Christian Kamm Got rid of improper static array compile time index check.
Wed, 13 Aug 2008 22:14:43 +0200 Christian Kamm Provided overload to TypeClass::builtinTypeInfo to return true.
Wed, 13 Aug 2008 20:50:54 +0200 Christian Kamm Do not assert if there's a struct-this nested context.
Wed, 13 Aug 2008 17:11:03 +0200 Tomas Lindquist Olsen Fixed uncaught, invalid use of nesting introduced in rev [498]
Wed, 13 Aug 2008 15:43:34 +0200 Tomas Lindquist Olsen merge
Wed, 13 Aug 2008 15:43:13 +0200 Tomas Lindquist Olsen Fixed problems constant multidimensional static array initializers.
Tue, 12 Aug 2008 00:56:09 +0200 Tomas Lindquist Olsen missed one phobos test