This is the mail archive of the gdb-prs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug symtab/14441] Need to support DW_TAG_rvalue_reference_type


https://sourceware.org/bugzilla/show_bug.cgi?id=14441

--- Comment #16 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Keith Seitz <kseitz@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=53cc15f5fe1f5e2358994d4f60f1c2aa9115004d

commit 53cc15f5fe1f5e2358994d4f60f1c2aa9115004d
Author: Artemiy Volkov <artemiyv@acm.org>
Date:   Mon Mar 20 13:47:43 2017 -0700

    Support rvalue reference type in parser

    This patch implements correct parsing of C++11 rvalue reference typenames.
    This is done in full similarity to the handling of regular references by
adding
    a '&&' token handling in c-exp.y, defining an rvalue reference type piece,
and
    implementing a follow type derivation in follow_types().

    gdb/ChangeLog

        PR gdb/14441
        * c-exp.y (ptr_operator): Handle the '&&' token in the typename.
        * parse.c (insert_type): Change assert statement.
        (follow_types): Handle rvalue reference types.
        * parser-defs.h (enum type_pieces) <tp_rvalue_reference>: New
        constant.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]