David Nadlinger
c41ef6b95e
Fold in MinGW Phobos test update.
v0.11.0
2013-06-05 17:46:40 +02:00
David Nadlinger
5423a90c25
Search LLVM_ROOT_DIR before system directories.
2013-06-05 17:11:08 +02:00
David Nadlinger
47a1815892
Try llvm-config binaries with version suffix.
...
This allows us to pick up the newest available version on
several common Debian derivatives.
[Cherry-picked 2b4f49b4e from master.]
2013-06-05 17:11:05 +02:00
David Nadlinger
b2bacba7f4
Correct wiki URL in debug info.
...
The wiki is not available using SSL; thanks to Kai for noticing
this.
2013-06-04 16:46:15 +02:00
David Nadlinger
e84b2692b1
Fold in missed MinGW math bug fix.
2013-06-04 16:45:04 +02:00
David Nadlinger
98e8c37bf5
Merge pull request #379 from klickverbot/initializer-type-mismatch
...
Fix initializer type mismatch crash
v0.11.0-beta2
2013-06-02 12:44:02 -07:00
David Nadlinger
ec59399e21
Change all URLs to point to wiki.dlang.org for the time being.
2013-06-02 21:27:02 +02:00
David Nadlinger
c89d4809d6
Be more lenient with initializer type mismatch; zext as necessary.
...
The integer initializer width mismatch issue should really be
fixed in the frontend, but is related to forward referencing
and thus hard to track down.
Also fixes an unlisted regression since the 2.061 merge, where
there would be a const(char*) vs. immutable(char*) mismatch
reported for some string constants.
GitHub: Fixes #378 .
2013-06-02 21:05:33 +02:00
David Nadlinger
ae48a19251
Refactoring-only part of DtoConstExpInit fix.
2013-06-02 21:05:33 +02:00
David Nadlinger
d9ce9ce67b
Removed TODO-riddled DtoInitializer only used in DtoVarDeclaration.
2013-06-02 21:05:33 +02:00
David Nadlinger
0a7eec400f
Removed dead global initializer code.
2013-06-02 21:05:33 +02:00
David Nadlinger
feeb5e95cc
Merge tag 'v0.11.0-beta1' into release-0.11.0
...
The merge of the MinGW Port updates accidentally didn't make
it into the GitHub version of the release branch, even though
the tag was correct.
2013-06-01 13:53:47 +02:00
kai
26eb95d91e
Add debug info for vector types.
2013-05-31 22:22:19 +02:00
David Nadlinger
f538dfc47f
Merge branch 'klickverbot/shorten-readme' into release-0.11.0.
2013-05-31 20:00:46 +02:00
David Nadlinger
35b91f4e98
Merge pull request #371 from redstar/release-0.11.0
...
Change version number for release
2013-05-30 07:59:05 -07:00
kai
e0dd8ef8ef
Change version number for release
2013-05-30 13:50:17 +02:00
David Nadlinger
fa7ad4cbc7
Merged in MinGW port updates.
...
This has been submitted to upstream DMD as GitHub pull
request #2086 , but didn't make it in time for 2.063.
v0.11.0-beta1
2013-05-29 22:19:13 +02:00
David Nadlinger
798a8e7822
MinGW: Fixed long double formatting.
2013-05-29 22:18:55 +02:00
David Nadlinger
0b5989c51a
MinGW: Use actually working strtold.
...
Like their whole runtime in general, the MSVC version does
not handle 80 bit reals/long doubles.
2013-05-29 22:18:42 +02:00
David Nadlinger
bf4df5fcc4
Remove unnecessary #undefs in Port header.
...
The Port function names are actually camel-cased and
as such do not collide with the math macros, and undefining
the names in the header is just annoying on platforms where
you want to use the system macros in the implementation.
2013-05-29 22:18:27 +02:00
David Nadlinger
7ab407da38
Separate out MinGW Port implementation.
...
This explicit style is generally preferred in DMD for platform-
specific code, and makes sense here as long doubles are tricky
on MinGW.
2013-05-29 22:18:16 +02:00
David Nadlinger
39313e7735
Ugly workaround for broken asm support in older CMake versions.
...
The only justification for this is the fact that we need it
to work for the release process.
2013-05-27 20:06:51 +02:00
David Nadlinger
00c073819f
Avoid setting C compiler flags on threadasm.S.
2013-05-27 19:00:55 +02:00
David Nadlinger
9c4d6e2c5a
*LLVM-based* D compiler.
2013-05-27 16:37:23 +02:00
David Nadlinger
a4a975df6c
Rewrap to 70 characters.
2013-05-21 00:03:58 +02:00
David Nadlinger
6fcfa2db54
Removed brief build instructions.
2013-05-21 00:03:03 +02:00
David Nadlinger
6e57b6c213
Merge pull request #361 from klickverbot/osx
...
PIC by default on OS X; cleanups.
2013-05-19 15:33:11 -07:00
David Nadlinger
d402cd382e
Always add 'uwtable' attribute on x86_64.
...
This is what Clang does, and omitting it could lead to problems
w.r.t. the System V ABI. Doesn't seem to have caused any issues
so far, though.
2013-05-19 21:47:15 +02:00
David Nadlinger
edbace8ae8
Default to PIC on OS X.
...
driver/target.h is due for a refactoring after the next
release is branched off.
2013-05-19 21:19:37 +02:00
David Nadlinger
4597423dc5
More IN_LLVM.
2013-05-19 20:52:51 +02:00
David Nadlinger
4ad1b94f11
Remove piece of dead code gone from upstream as well.
...
We do not support building with DMC anyway, so no
functionality change implied.
2013-05-19 20:52:42 +02:00
David Nadlinger
ad4eb1b6bd
Align unused real alignment code to upstream source.
...
We set the target-specific values at runtime in Type::init().
2013-05-19 20:52:42 +02:00
David Nadlinger
8123c1c7b9
Pull in hack to reduce GC root ranges on Linux.
...
GitHub: #233 .
2013-05-19 20:52:26 +02:00
David Nadlinger
8d0749c394
Merge pull request #360 from klickverbot/union-initializer
...
Unify struct initializer codegen, fix it for unions
2013-05-19 11:49:55 -07:00
David Nadlinger
87c8a96545
Check initializer type size in IrStruct::getDefaultInit().
2013-05-19 20:25:16 +02:00
David Nadlinger
1fed92b9b7
VarExp::toElem refactoring and global size assertion.
...
Frontend errors shouldn't be used for glue layer consistency
checks – maybe the error was actually hit in ancient versions.
2013-05-19 20:25:16 +02:00
David Nadlinger
41e580a79f
Get rid of now-obsolete DtoConstInitializerType.
2013-05-19 20:25:16 +02:00
David Nadlinger
eef05ba019
Do not try to guess exact initializer type.
...
This might have been required with the old (pre-3.0) LLVM
type system, but the module linker handles global type
resolution just fine now.
Also, it is virtually impossible to determine the type in
advance for some cases, e.g. an array of unions with an
initializer that contains pointers to the array itself.
2013-05-19 20:25:11 +02:00
David Nadlinger
f8f405000b
Avoid confusing naming convention.
...
We generally do not really use underscore prefixes. But if
they are used in other codebases, they typically refer to
member variables.
2013-05-18 19:51:37 +02:00
David Nadlinger
7b435c2c87
Unify handling of struct initializers.
...
GitHub: Fixes #351 .
2013-05-18 19:51:37 +02:00
David Nadlinger
b577d1cf0b
Handle different element initializer types in array literals.
2013-05-18 16:46:57 +02:00
David Nadlinger
b49cbeaaf1
Factored out struct initializer constant generation.
2013-05-17 01:02:02 +02:00
David Nadlinger
beed5c3044
Get rid of empty IrBase class.
...
It isn't useful in any way now that the GC is out of the
picture, and the existance of a "dummy" toChars() method is
annoying when debugging.
2013-05-15 20:28:53 +02:00
David Nadlinger
f57eac796f
Expand on IrType::get rationale.
2013-05-15 20:19:44 +02:00
kai
23df06a3ba
Add <cctype> to asm-x86.h.
...
This removes a conditional block introduced for MSVC.
2013-05-13 21:19:01 +02:00
Kai Nacke
116432808b
Merge pull request #352 from redstar/winldmd
...
Add missing include for Windows
2013-05-13 11:20:24 -07:00
kai
a31d704941
Add missing include for Windows
2013-05-13 18:47:59 +02:00
David Nadlinger
b3dbf9cd9c
Merge pull request #349 from klickverbot/fix-moduleinfo
...
Fixed ModuleInfo module name emission
2013-05-12 05:21:08 -07:00
David Nadlinger
7048c69d51
Merge pull request #350 from klickverbot/oss-response-expand
...
Replaced response_expand with BSD-licensed reimplementation.
2013-05-12 05:01:14 -07:00
David Nadlinger
db270a9a94
Replaced response_expand with BSD-licensed reimplementation.
...
Cleanup to follow later.
GitHub: Fixes #267 .
2013-05-12 13:38:23 +02:00