diff options
Diffstat (limited to 'gcc/langhooks.c')
-rw-r--r-- | gcc/langhooks.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/langhooks.c b/gcc/langhooks.c index 2635efef6f9..b8e7aaacc27 100644 --- a/gcc/langhooks.c +++ b/gcc/langhooks.c @@ -480,6 +480,9 @@ add_builtin_function (const char *name, TREE_PUBLIC (decl) = 1; DECL_EXTERNAL (decl) = 1; DECL_BUILT_IN_CLASS (decl) = cl; + + DECL_FUNCTION_CODE (decl) = -1; + gcc_assert (DECL_FUNCTION_CODE (decl) >= function_code); DECL_FUNCTION_CODE (decl) = function_code; if (library_name) |