Commit 3102858d by Marek Polacek Committed by Marek Polacek

re PR c/35449 (extended asm documentation wrong)

	PR c/35449
	* doc/extend.texi (Example of asm with clobbered asm reg): Fix typo.

From-SVN: r208815
parent 4b1e108c
2014-03-25 Marek Polacek <polacek@redhat.com>
PR c/35449
* doc/extend.texi (Example of asm with clobbered asm reg): Fix typo.
2014-03-25 Alan Lawrence <alan.lawrence@arm.com> 2014-03-25 Alan Lawrence <alan.lawrence@arm.com>
* config/aarch64/aarch64.c (aarch64_simd_valid_immediate): Reverse * config/aarch64/aarch64.c (aarch64_simd_valid_immediate): Reverse
......
...@@ -6343,7 +6343,7 @@ int foo () ...@@ -6343,7 +6343,7 @@ int foo ()
int *y = &x; int *y = &x;
int result; int result;
asm ("magic stuff accessing an 'int' pointed to by '%1'" asm ("magic stuff accessing an 'int' pointed to by '%1'"
: "=&d" (r) : "a" (y), "m" (*y)); : "=&d" (result) : "a" (y), "m" (*y));
return result; return result;
@} @}
@end smallexample @end smallexample
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment