diff options
author | Iain Buclaw <ibuclaw@symmetryinvestments.com> | 2024-12-29 06:40:04 +0100 |
---|---|---|
committer | Iain Buclaw <ibuclaw@gdcproject.org> | 2025-01-05 13:30:24 +0100 |
commit | 332cf038fda109ea0612eeba7a85441293ba6984 (patch) | |
tree | ca5c381d189ace8afa4cf40369cd7d2063bc00a4 /gcc/d/dmd/objc.d | |
parent | 31f1bec65ba257adc346f952fd79a1ec3165a2e6 (diff) | |
download | gcc-332cf038fda109ea0612eeba7a85441293ba6984.zip gcc-332cf038fda109ea0612eeba7a85441293ba6984.tar.gz gcc-332cf038fda109ea0612eeba7a85441293ba6984.tar.bz2 |
d: Merge upstream dmd c11e1d1708, druntime e60bfd11bd, phobos 8729740e3
Synchronizing the compiler with the upstream release of v2.108.1.
D front-end changes:
- Import dmd v2.108.1.
- Add experimental support for language editions, enabled by
adding the UDA `@__edition_latest_do_not_use' before module
declarations.
- [Next Edition] Aliasing a member of a type instance is now an
error.
- Added `__ctfeWrite' to write messages from CTFE.
- `-fdump-c++-spec' generates signatures for `extern(Windows)'
and `extern(System)' functions.
- `foreach_reverse' on a delegate is now an error.
- ImportC has improved Unicode support.
D runtime changes:
- Mark unsafe unittest @trusted.
Phobos changes:
- Mark unsafe functions @trusted.
gcc/d/ChangeLog:
* Make-lang.in (D_FRONTEND_OBJS): Add d/attribsem.o,
d/common-charactertables.o, d/common-identifiertables.o.
* d-attribs.cc (apply_user_attributes): Update for new front-end
interface.
* d-builtins.cc (d_init_versions): Predefine CppRuntime_GNU.
* d-incpath.cc (add_globalpaths): Update for new front-end interface.
(add_filepaths): Likewise.
(add_import_paths): Likewise.
* d-lang.cc (d_post_options): Likewise.
* dmd/MERGE: Merge upstream dmd c11e1d1708.
* dmd/VERSION: Bump version to v2.108.1.
libphobos/ChangeLog:
* libdruntime/MERGE: Merge upstream druntime e60bfd11bd.
* src/MERGE: Merge upstream phobos 8729740e3.
gcc/testsuite/ChangeLog:
* gdc.dg/torture/pr96435.d: Add dg-warning.
Diffstat (limited to 'gcc/d/dmd/objc.d')
-rw-r--r-- | gcc/d/dmd/objc.d | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/d/dmd/objc.d b/gcc/d/dmd/objc.d index 2f36d5d..624210b 100644 --- a/gcc/d/dmd/objc.d +++ b/gcc/d/dmd/objc.d @@ -17,6 +17,7 @@ import dmd.aggregate; import dmd.arraytypes; import dmd.astenums; import dmd.attrib; +import dmd.attribsem; import dmd.cond; import dmd.dclass; import dmd.declaration; |