mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
19 lines
257 B
C++
19 lines
257 B
C++
__declspec(align(32)) struct mystruct { short myshort; };
|
|
|
|
int main(void) {
|
|
return 0ui32;
|
|
}
|
|
|
|
void ms_asm (void)
|
|
__asm ("foo");
|
|
|
|
void gnu_asm() {
|
|
__asm nop
|
|
}
|
|
|
|
|
|
|
|
// Test for CPP-184
|
|
_Pragma("clang diagnostic push")
|
|
_Pragma("clang diagnostic pop")
|