Correct the behavior of this test for non-Windows targets
This should address build failures like: https://lab.llvm.org/buildbot/#/builders/188/builds/14980 https://lab.llvm.org/buildbot/#/builders/171/builds/15515 https://lab.llvm.org/buildbot/#/builders/91/builds/9877
This commit is contained in:
parent
fcdc6a466a
commit
1896df18cc
|
|
@ -177,8 +177,16 @@ void dr118(void) {
|
||||||
/* The enum isn't a complete type until the closing }, but an
|
/* The enum isn't a complete type until the closing }, but an
|
||||||
* implementation may complete the type earlier if it has sufficient type
|
* implementation may complete the type earlier if it has sufficient type
|
||||||
* information to calculate size or alignment, etc.
|
* information to calculate size or alignment, etc.
|
||||||
|
*
|
||||||
|
* On Microsoft targets, an enum is always implicit int sized, so the type
|
||||||
|
* is sufficiently complete there. On other platforms, it is an incomplete
|
||||||
|
* type at this point.
|
||||||
*/
|
*/
|
||||||
Val = sizeof(enum E)
|
Val = sizeof(enum E)
|
||||||
|
#ifndef _WIN32
|
||||||
|
/* expected-error@-2 {{invalid application of 'sizeof' to an incomplete type 'enum E'}} */
|
||||||
|
/* expected-note@-12 {{definition of 'enum E' is not complete until the closing '}'}} */
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue