diff options
author | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-13 01:35:27 +0000 |
---|---|---|
committer | hubicka <hubicka@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-01-13 01:35:27 +0000 |
commit | d731003eec26e8a70dd628d2f472ee3258d2163c (patch) | |
tree | 45863b0867b1a5dca9004db917fa2c41f48f77a5 /gcc/toplev.h | |
parent | 6c04b2f1c86c9d25617cbce096427cd8914f88ca (diff) | |
download | gcc-d731003eec26e8a70dd628d2f472ee3258d2163c.tar.gz |
* cgraphunit.c (cgraph_optimize_function): Always do
optimize_inline_calls when there is always_inline callee.
(cgraph_decide_inlining): Fix formating.
* tree-inline.c (inlinable_function_p): Do sorry for alwaysinline
functions.
(expand_call_inline): Likewise.
* toplev.h (sorry): Fix prototype.
* gcc.dg/always_inline.c: New test.
* gcc.dg/debug/20031231-1.c: Fix.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75781 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/toplev.h')
-rw-r--r-- | gcc/toplev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.h b/gcc/toplev.h index 31611c3a220..3c1a1eb3021 100644 --- a/gcc/toplev.h +++ b/gcc/toplev.h @@ -60,7 +60,7 @@ extern void error (const char *, ...); extern void fatal_error (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2) ATTRIBUTE_NORETURN; extern void pedwarn (const char *, ...); -extern void sorry (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2); +extern void sorry (const char *, ...); extern void inform (const char *, ...) ATTRIBUTE_GCC_DIAG(1,2); extern void rest_of_decl_compilation (tree, const char *, int, int); |