1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 14:55:41 +02:00

fix omitted parentheses in extended ASM #134

This commit is contained in:
Neuromancer42 2022-11-07 12:24:35 +08:00 committed by Jonah Graham
parent 90c6b6c0e9
commit 679535f50a

View file

@ -4,7 +4,7 @@ asm("movl %1, %%eax;");
//!GNUExtendedASMDeclarationTest //!GNUExtendedASMDeclarationTest
//%CPP GNU //%CPP GNU
asm("bswap %0" : "+r" (_data)); asm("bswap %0" : "+r" ( _data ));
//!FunctionDefinitionTest //!FunctionDefinitionTest
//%CPP //%CPP