This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c/14677] sorry, unimplemented: inlining failed in call ff_h263_round_chroma'
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 22 Mar 2004 07:37:17 -0000
- Subject: [Bug c/14677] sorry, unimplemented: inlining failed in call ff_h263_round_chroma'
- References: <20040322072408.14677.schmid@snake.iap.physik.tu-darmstadt.de>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Additional Comments From pinskia at gcc dot gnu dot org 2004-03-22 07:37 -------
The error is correct, the function body for "ff_h263_round_chroma" is not available:
inline __attribute__ ((__always_inline__)) int ff_h263_round_chroma(int x);
The function is not defined anywhere in the source file except for the above line. The attribute
always_inline means inline or fail.
--
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14677