From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5943 invoked by alias); 18 May 2010 03:37:22 -0000 Received: (qmail 5911 invoked by uid 48); 18 May 2010 03:37:11 -0000 Date: Tue, 18 May 2010 03:37:00 -0000 Subject: [Bug c++/44186] New: Wrong code generated with -O2 and above X-Bugzilla-Reason: CC Message-ID: Reply-To: gcc-bugzilla@gcc.gnu.org To: gcc-bugs@gcc.gnu.org From: "eyakubovich at gmail dot com" Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org X-SW-Source: 2010-05/txt/msg01885.txt.bz2 This is a stripped down code from proposed Boost.Move library. Asserts don't fire with -O0 and -O1 but do with -O2 and -O3 #include template class rv : public T { rv(); ~rv(); rv(rv const&); void operator=(rv const&); }; template rv& move(T& x) { return *static_cast* >(&x); } //A movable class class movable { movable(movable &); movable& operator=(movable&); public: operator rv&() { return *reinterpret_cast< rv* >(this); } operator const rv&() const { return *reinterpret_cast* >(this); } private: int value_; public: movable() : value_(1){} //Move constructor and assignment movable(rv& m) { value_ = m.value_; m.value_ = 0; } movable & operator=(rv& m) { value_ = m.value_; m.value_ = 0; return *this; } bool moved() const //Observer { return value_ == 0; } }; movable function(movable m) { return movable(move(m)); } int main() { { movable m; movable m2(move(m)); assert(m.moved()); assert(!m2.moved()); } { movable m; movable m3(function(movable(move(m)))); assert(m.moved()); assert(!m3.moved()); } { movable m; movable m4(function(move(m))); assert(m.moved()); assert(!m4.moved()); } return 0; } -- Summary: Wrong code generated with -O2 and above Product: gcc Version: 4.4.4 Status: UNCONFIRMED Severity: normal Priority: P3 Component: c++ AssignedTo: unassigned at gcc dot gnu dot org ReportedBy: eyakubovich at gmail dot com http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44186