From: Jason Merrill Date: Fri, 6 Apr 2012 13:25:37 +0000 (-0400) Subject: xvalue comment X-Git-Tag: misc/gccgo-go1_1_2~3627 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b258592a08389223dd89ba0f31384f2adf9906c4;p=thirdparty%2Fgcc.git xvalue comment From-SVN: r186186 --- diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index 8bca1fa0b634..db5e8a5e084f 100644 --- a/gcc/cp/cp-tree.h +++ b/gcc/cp/cp-tree.h @@ -4043,8 +4043,8 @@ enum tag_types { enum cp_lvalue_kind_flags { clk_none = 0, /* Things that are not an lvalue. */ clk_ordinary = 1, /* An ordinary lvalue. */ - clk_rvalueref = 2,/* An rvalue formed using an rvalue reference */ - clk_class = 4, /* An rvalue of class-type. */ + clk_rvalueref = 2,/* An xvalue (rvalue formed using an rvalue reference) */ + clk_class = 4, /* A prvalue of class-type. */ clk_bitfield = 8, /* An lvalue for a bit-field. */ clk_packed = 16 /* An lvalue for a packed field. */ };