[randstruct] Move initializer check to be more effective
If a randomized structure has an initializer with a dedicated initializer in it, the field initialzed by that dedicated initializer may end up at the end of the RecordDecl. This however may skip the random layout initization check. struct t { int a, b, c, d, e; } x = { .a = 2, 4, 5, 6 }; Let's say that "a" is lands as the last field after randomization. The call to CheckDesignatedInitializer sets the iterator to the end of the initializer list. During the next iteration of the initializer list check, it detects that and fails to issue the error about initializing a randomized struct with non-designated initializer. Instead, it issues an error about "excess elements in struct initializer", which is confusing under these circumstances. Reviewed By: aaron.ballman Differential Revision: https://reviews.llvm.org/D124694
Loading
Please sign in to comment