r277846 - in /trunk/gcc: ChangeLog expr.c

matmal01@gcc.gnu.org matmal01@gcc.gnu.org
Tue Nov 5 15:36:00 GMT 2019


Author: matmal01
Date: Tue Nov  5 15:36:20 2019
New Revision: 277846

URL: https://gcc.gnu.org/viewcvs?rev=277846&root=gcc&view=rev
Log:
[mid-end] Fix declared type of personality functions


`build_personality_function` generates a declaration for a personality
function.  The type it declares for these functions doesn't match the
type of the actual personality functions that are defined by the C++
unwinding ABI.

This doesn't cause any crashes since the compiler never generates a call
to these decl's, and hence the type of the function is never used.
Nonetheless, for the sake of consistency and readability we update the
type of this declaration.

gcc/ChangeLog:

2019-11-05  Matthew Malcomson  <matthew.malcomson@arm.com>

	* expr.c (build_personality_function): Fix generated type to
	match actual personality functions.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/expr.c



More information about the Gcc-cvs mailing list