Commit 1dc46545 by Jan Hubicka Committed by Jan Hubicka

* builtins.def (DEF_C99_BUILTIN): Fix.

From-SVN: r59571
parent 5154b05d
Wed Nov 27 14:45:46 CET 2002 Jan Hubicka <jh@suse.cz>
* builtins.def (DEF_C99_BUILTIN): Fix.
2002-11-26 Andrew Haley <aph@redhat.com> 2002-11-26 Andrew Haley <aph@redhat.com>
* unwind-sjlj.c (_Unwind_FindEnclosingFunction): Rename * unwind-sjlj.c (_Unwind_FindEnclosingFunction): Rename
......
...@@ -114,7 +114,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA ...@@ -114,7 +114,7 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#undef DEF_C99_BUILTIN #undef DEF_C99_BUILTIN
#define DEF_C99_BUILTIN(ENUM, NAME, TYPE) \ #define DEF_C99_BUILTIN(ENUM, NAME, TYPE) \
DEF_BUILTIN (ENUM, NAME, BUILT_IN_NORMAL, TYPE, TYPE, \ DEF_BUILTIN (ENUM, NAME, BUILT_IN_NORMAL, TYPE, TYPE, \
true, !flag_isoc99, true, ATTR_NOTHROW_LIST) true, true, !flag_isoc99, ATTR_NOTHROW_LIST)
/* Like DEF_LIB_BUILTIN, except that the function is expanded in the /* Like DEF_LIB_BUILTIN, except that the function is expanded in the
front-end. */ front-end. */
......
Wed Nov 27 14:37:34 CET 2002 Jan Hubicka <jh@suse.cz>
* gcc.c-torture/execute/20021127.[cx]: New test.
2002-11-26 Geoffrey Keating <geoffk@apple.com> 2002-11-26 Geoffrey Keating <geoffk@apple.com>
* g++.dg/init/brace2.C: New test. * g++.dg/init/brace2.C: New test.
......
long long a = -1;
long long llabs (long long);
void abort (void);
int
main()
{
if (llabs (a) != 1)
abort ();
return 0;
}
long long llabs (long long b)
{
abort ();
}
set additional_flags "-std=c99"
return 0
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