Thread View: gmane.comp.gcc.patches
1 messages
1 total messages
Started by Marek Polacek
Tue, 25 Mar 2014 17:45
[committed][DOC PATCH] Fix typo in example (PR c/35449)
Author: Marek Polacek
Date: Tue, 25 Mar 2014 17:45
Date: Tue, 25 Mar 2014 17:45
22 lines
554 bytes
554 bytes
I'm applying this as obvious. 2014-03-25 Marek Polacek <polacek@redhat.com> PR c/35449 * doc/extend.texi (Example of asm with clobbered asm reg): Fix typo. diff --git gcc/doc/extend.texi gcc/doc/extend.texi index 986cc94..c0da713 100644 --- gcc/doc/extend.texi +++ gcc/doc/extend.texi @@ -6343,7 +6343,7 @@ int foo () int *y = &x; int result; asm ("magic stuff accessing an 'int' pointed to by '%1'" - : "=&d" (r) : "a" (y), "m" (*y)); + : "=&d" (result) : "a" (y), "m" (*y)); return result; @} @end smallexample Marek
Thread Navigation
This is a paginated view of messages in the thread with full content displayed inline.
Messages are displayed in chronological order, with the original post highlighted in green.
Use pagination controls to navigate through all messages in large threads.
Back to All Threads