summaryrefslogtreecommitdiff
path: root/gcc/config/mep
diff options
context:
space:
mode:
authordj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2009-07-11 03:45:51 +0000
committerdj <dj@138bc75d-0d04-0410-961f-82ee72b054a4>2009-07-11 03:45:51 +0000
commit1756c1fe34d7ff1f35a00d3cb6a019289a014f7d (patch)
tree696537eea4abe44a19a9d9afb682201775c1caff /gcc/config/mep
parentaa824a13686d453b3e4e0eec68fa176def43c774 (diff)
downloadgcc-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.c8
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