From: Herman A.J. ten Brugge Date: Sat, 29 Jun 2002 03:05:50 +0000 (+0200) Subject: c4x.h: (TARGET_CPU_CPP_BUILTINS): Check flag_inline_functions and flag_inline_trees... X-Git-Tag: releases/gcc-3.3.0~4049 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=76118c110284872b1bbb2eac7b8c37d4907ee36b;p=thirdparty%2Fgcc.git c4x.h: (TARGET_CPU_CPP_BUILTINS): Check flag_inline_functions and flag_inline_trees to... * c4x.h: (TARGET_CPU_CPP_BUILTINS): Check flag_inline_functions and flag_inline_trees to enable inlining. From-SVN: r55091 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b424e39d6588..01539f5b6479 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-06-29 Herman A.J. ten Brugge + + * c4x.h: (TARGET_CPU_CPP_BUILTINS): Check flag_inline_functions and + flag_inline_trees to enable inlining. + 2002-06-28 Phil Edwards * configure.in (gcc_gxx_include_dir): Change to match versioned diff --git a/gcc/config/c4x/c4x.h b/gcc/config/c4x/c4x.h index e73c40eb0a69..66ea582f6519 100644 --- a/gcc/config/c4x/c4x.h +++ b/gcc/config/c4x/c4x.h @@ -35,7 +35,8 @@ builtin_define ("_BIGMODEL"); \ if (!TARGET_MEMPARM) \ builtin_define ("_REGPARM"); \ - if (flag_inline_functions) \ + if (flag_inline_functions \ + || flag_inline_trees) \ builtin_define ("_INLINE"); \ if (TARGET_C3X) \ { \