This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug c++/53491] [4.7/4.8 Regression] ICE in build_target_expr_with_type, at cp/tree.c:587
- From: "paolo.carlini at oracle dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: Fri, 25 May 2012 23:14:39 +0000
- Subject: [Bug c++/53491] [4.7/4.8 Regression] ICE in build_target_expr_with_type, at cp/tree.c:587
- Auto-submitted: auto-generated
- References: <bug-53491-4@http.gcc.gnu.org/bugzilla/>
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53491
Paolo Carlini <paolo.carlini at oracle dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |ice-on-invalid-code
Summary|internal compiler error: in |[4.7/4.8 Regression] ICE in
|build_target_expr_with_type |build_target_expr_with_type
|, at cp/tree.c:587 |, at cp/tree.c:587
--- Comment #3 from Paolo Carlini <paolo.carlini at oracle dot com> 2012-05-25 23:14:39 UTC ---
This is enough:
struct M
{
void pop();
};
int main()
{
int result = 0;
M m;
result += m.pop();
}
looks like a Regression.