Skip to content
Snippets Groups Projects
Commit e4d6aaad authored by jbeulich's avatar jbeulich
Browse files

*** empty log message ***

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@85861 138bc75d-0d04-0410-961f-82ee72b054a4
parent 8f26d225
No related branches found
No related tags found
No related merge requests found
void f (int i)
{
__asm__("" : );
__asm__("" : "+g" (i));
__asm__("" :: );
__asm__("" :: "g" (i));
__asm__("" : : );
__asm__("" : "+g" (i) : );
__asm__("" : : "g" (i));
__asm__("" : "+g" (i) : "g" (i));
__asm__("" ::: );
__asm__("" ::: "memory");
__asm__("" : :: );
__asm__("" : "+g" (i) :: );
__asm__("" : :: "memory");
__asm__("" : "+g" (i) :: "memory");
__asm__("" :: : );
__asm__("" :: "g" (i) : );
__asm__("" :: : "memory");
__asm__("" :: "g" (i) : "memory");
__asm__("" : : : );
__asm__("" : "+g" (i) : : );
__asm__("" : : "g" (i) : );
__asm__("" : : : "memory");
__asm__("" : "+g" (i) : "g" (i) : );
__asm__("" : "+g" (i) : : "memory");
__asm__("" : : "g" (i) : "memory");
__asm__("" : "+g" (i) : "g" (i) : "memory");
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment