From b258592a08389223dd89ba0f31384f2adf9906c4 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Fri, 6 Apr 2012 09:25:37 -0400 Subject: [PATCH] xvalue comment From-SVN: r186186 --- gcc/cp/cp-tree.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/cp/cp-tree.h b/gcc/cp/cp-tree.h index 8bca1fa0b63..db5e8a5e084 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. */ };