Commit 28398d0d by Georg-Johann Lay Committed by Georg-Johann Lay

extend.texi (Example of asm with clobbered asm reg): Fix missing ':' in asm example.

	* doc/extend.texi (Example of asm with clobbered asm reg): Fix
	missing ':' in asm example.

From-SVN: r195471
parent e18724aa
2013-01-25 Georg-Johann Lay <avr@gjlay.de>
* doc/extend.texi (Example of asm with clobbered asm reg): Fix
missing ':' in asm example.
2013-01-25 Tejas Belagod <tejas.belagod@arm.com> 2013-01-25 Tejas Belagod <tejas.belagod@arm.com>
* config/aarch64/aarch64-simd-builtins.def: Separate sq<r>dmulh_lane * config/aarch64/aarch64-simd-builtins.def: Separate sq<r>dmulh_lane
......
...@@ -6062,7 +6062,7 @@ int foo () ...@@ -6062,7 +6062,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" (r) : "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