cgen: fix fixed-array const initializer#25293
Merged
Merged
Conversation
|
Connected to Huly®: V_0.6-25309 |
spytheman
added a commit
to kbkpbot/v
that referenced
this pull request
Sep 13, 2025
* master: cgen: fix option variadic arg passing (fix vlang#25261) (vlang#25273) x.crypto.ascon: improve ascon_generic_hash, cleanup (vlang#25288) cgen: fix generic cast to sumtype of empty struct (fix vlang#25263) (vlang#25290) cgen: fix fixed-array const initializer (fix vlang#25291) (vlang#25293)
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.
Fix issue #25291
In
msvc, initializer for the global array uses compound literals (which are not constant expressions in C) and also uses a cast-like syntax that is not allowed in constant expressions.And this PR also enable
i32in the check.=>