Commit f814e489 by Uros Bizjak

abi-1.c: Use scan-assembler-times "..." 1 instead of scan-assembler to check for xmm0...

	* gcc.target/i386/abi-1.c: Use scan-assembler-times "..." 1 instead of
	scan-assembler to check for xmm0 register.

From-SVN: r144349
parent 2ec62529
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
* emit-rtl.c: ...here. * emit-rtl.c: ...here.
2009-02-21 Danny Smith <dannysmith@users.sourceforge.net> 2009-02-21 Danny Smith <dannysmith@users.sourceforge.net>
* config/i386/winnt.c (i386_pe_asm_output_aligned_decl_common): Revert * config/i386/winnt.c (i386_pe_asm_output_aligned_decl_common): Revert
accidental and undocumented change at revision 140860. accidental and undocumented change at revision 140860.
...@@ -18,7 +19,7 @@ ...@@ -18,7 +19,7 @@
types_compatible_p langhook. types_compatible_p langhook.
2009-02-20 Mark Mitchell <mark@codesourcery.com> 2009-02-20 Mark Mitchell <mark@codesourcery.com>
Joseph Myers <joseph@codesourcery.com> Joseph Myers <joseph@codesourcery.com>
* config/arm/arm.c (arm_builtin_va_list): New function. * config/arm/arm.c (arm_builtin_va_list): New function.
(arm_expand_builtin_va_start): Likewise. (arm_expand_builtin_va_start): Likewise.
......
2009-02-21 Uros Bizjak <ubizjak@gmail.com>
* gcc.target/i386/abi-1.c: Use scan-assembler-times "..." 1 instead of
scan-assembler to check for xmm0 register.
2009-02-20 Mark Mitchell <mark@codesourcery.com> 2009-02-20 Mark Mitchell <mark@codesourcery.com>
Joseph Myers <joseph@codesourcery.com> Joseph Myers <joseph@codesourcery.com>
* gcc.target/arm/va_list.c: New test. * gcc.target/arm/va_list.c: New test.
* g++.dg/abi/arm_va_list.C: Likewise. * g++.dg/abi/arm_va_list.C: Likewise.
......
...@@ -5,4 +5,4 @@ ...@@ -5,4 +5,4 @@
typedef double v2df __attribute__((vector_size (16))); typedef double v2df __attribute__((vector_size (16)));
v2df foo (void) { return (v2df){ 1.0, 2.0 }; } v2df foo (void) { return (v2df){ 1.0, 2.0 }; }
/* { dg-final { scan-assembler "xmm0" } } */ /* { dg-final { scan-assembler-times "xmm0" 1 } } */
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