Conversation
Member
ibuclaw
commented
Sep 15, 2023
- Fix Issue 24065 - __traits(getTargetInfo) causes a segfault when passed a non value (Fix Issue 24065 - __traits(getTargetInfo) causes a segfault when pass… #15494)
- Fix Issue 24066 - __traits(isAbstractClass) causes a segfault when passed an opaque class (Fix Issue 24066 - __traits(isAbstractClass) causes a segfault when passed an opaque class #15495)
- Fix Issue 24079 - core.sys.windows.winnt.IMAGE_FIRST_SECTION returns bad pointer (Fix Issue 24079 - core.sys.windows.winnt.IMAGE_FIRST_SECTION returns bad pointer #15519)
- Fix 24070 - Opaque struct with nested definition when taking pointer segfaults
- [stable] Make enum function a deprecation, not an error ([stable] Make enum function a deprecation, not an error #15533)
- bump VERSION to v2.105.1-beta.1
- Fix Issue 24088 - Nested functions using the shortened syntax were not recognized correctly as declarations.
- Fix Issue 24078 - Fold constants on array concatenation only for strings
- Fix Issue 24106 - core.stdc.math provides an implementation of modfl for uClibc that only works when real and double are the same size
- druntime: Fix malloc-leaks in ModuleGroup.sortCtors() ([stable] druntime: Fix malloc-leaks in ModuleGroup.sortCtors() #15559)
- bump VERSION to v2.105.1
- purge changelog
- Fix Issue 24109 - [REG2.103] 'need this' when invoking outer method from inner method (Fix Issue 24109 - [REG2.103] 'need this' when invoking outer method from inner method #15577)
- Fix Issue 24110 - [REG2.104] Array comparison lowering apparently not handled properly in __traits(compiles) (Fix Issue 24110 - [REG2.104] Array comparison lowering apparently not handled properly in __traits(compiles) #15575)
- Fix Issue 24139 - 'this' corruption in extern(C++) dtor when destructing via TypeInfo_Struct ([stable] Fix Issue 24139 - 'this' corruption in extern(C++) dtor when destructing via TypeInfo_Struct #15598)
- Fix Issue 24118 - ICE / regression from 2.103.1 - segfault on CTFE only code in 2.104.2 and 2.105.0 (Issue 24118 - ICE / regression from 2.103.1 - segfault on CTFE only code in 2.104.2 and 2.105.0 #15578)
- Fix Issue 24144 - [REG2.105] Silent file name index overflow ([stable] Fix Issue 24144 - [REG2.105] Silent file name index overflow #15604)
- bump VERSION to v2.105.2
…ssed an opaque class (dlang#15495) * Fix Issue 24066 - __traits(isAbstractClass) causes a segfault when passed an opaque class * Update comment Co-authored-by: Dennis <dkorpel@users.noreply.github.com> --------- Co-authored-by: Dennis <dkorpel@users.noreply.github.com>
[stable] Make enum function a deprecation, not an error Signed-off-by: Dennis <dkorpel@users.noreply.github.com> Signed-off-by: Vladimir Panteleev <CyberShadow@users.noreply.github.com> Signed-off-by: Petar Kirov <PetarKirov@users.noreply.github.com> Merged-on-behalf-of: Vladimir Panteleev <CyberShadow@users.noreply.github.com>
…t recognized correctly as declarations. The fix was simply to amend `isDeclarator` to look for TOK.goesTo (i.e. `=>`)
Without this limitation, the code could incorrectly concatenate `["c"] ~ "a" ~ "b"` as `["c"] ~ "ab"`, which was incorrect. Signed-off-by: Teodor Dutu <teodor.dutu@gmail.com>
…for uClibc that only works when real and double are the same size
I guess the recent removal of module constructors in druntime has brought these to light, for a little LDC ASan smoke test, which newly complains with D v2.105, e.g.: > Direct leak of 78624 byte(s) in 126 object(s) allocated from: > #0 0x55606978c40d in malloc /local/mnt/workspace/tmp/final/llvm-project/compiler-rt/lib/asan/asan_malloc_linux.cpp:145:3 > #1 0x5560698050b1 in _D2rt5minfo11ModuleGroup9sortCtorsMFNbAyaZv
…rom inner method (dlang#15577)
… handled properly in __traits(compiles) (dlang#15575)
…ing via TypeInfo_Struct (dlang#15598) For the `TypeInfo_Struct.xdtor` field, the linkage of the aggregate itself plays no role; it's the linkage of the destructor that matters. A real-life example for this is DMD's own `OutBuffer`.
…ly code in 2.104.2 and 2.105.0 (dlang#15578)
…5604) * Print an ICE message for Loc.filename overflows * Increase the Loc size again, raising the file name limit from 64K to 4G but keeping the index indirection from dlang#15199. The `Loc` size for DMD-as-a-library is 16 bytes then, and 12 bytes otherwise.
Contributor
|
Thanks for your pull request, @ibuclaw! Bugzilla references
Testing this PR locallyIf you don't have a local development environment setup, you can use Digger to test this PR: dub run digger -- build "master + dmd#15609" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.