diff options
author | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-11 03:45:51 +0000 |
---|---|---|
committer | dj <dj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-11 03:45:51 +0000 |
commit | 1756c1fe34d7ff1f35a00d3cb6a019289a014f7d (patch) | |
tree | 696537eea4abe44a19a9d9afb682201775c1caff /gcc/config/mep | |
parent | aa824a13686d453b3e4e0eec68fa176def43c774 (diff) | |
download | gcc-1756c1fe34d7ff1f35a00d3cb6a019289a014f7d.tar.gz |
* config/mep/mep.c (mep_can_inline_p): Correct logic, and simplify.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@149507 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mep')
-rw-r--r-- | gcc/config/mep/mep.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/config/mep/mep.c b/gcc/config/mep/mep.c index 59dbb8895cd..33bde90efc4 100644 --- a/gcc/config/mep/mep.c +++ b/gcc/config/mep/mep.c @@ -4115,14 +4115,12 @@ mep_can_inline_p (tree caller, tree callee) if (TREE_CODE (callee) == ADDR_EXPR) callee = TREE_OPERAND (callee, 0); - if (TREE_CODE (callee) == FUNCTION_DECL - && DECL_DECLARED_INLINE_P (callee) - && !mep_vliw_function_p (caller) + if (!mep_vliw_function_p (caller) && mep_vliw_function_p (callee)) { - return true; + return false; } - return false; + return true; } #define FUNC_CALL 1 |