Replace printf with __builtin_printf

* gcc.target/i386/iamcu/test_basic_64bit_returning.c (main):
	Replace printf with __builtin_printf.

From-SVN: r228922
This commit is contained in:
H.J. Lu 2015-10-16 19:34:32 +00:00 committed by H.J. Lu
parent 259acf4304
commit bc8512ab00
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2015-10-16 H.J. Lu <hongjiu.lu@intel.com>
* gcc.target/i386/iamcu/test_basic_64bit_returning.c (main):
Replace printf with __builtin_printf.
2015-10-16 H.J. Lu <hongjiu.lu@intel.com>
* gcc.target/i386/iamcu/test_passing_unions.c (main): Properly

View File

@ -49,7 +49,7 @@ main (void)
if (d != test_64.d
|| (test_64.ll & 0xffffffff) != eax
|| ((test_64.ll >> 32) & 0xffffffff) != edx)
printf ("fail double\n"), failed++;
__builtin_printf ("fail double\n"), failed++;
if (failed)
abort ();