[cfe-commits] r89655 - in /cfe/trunk: include/clang/Basic/DiagnosticSemaKinds.td lib/Sema/SemaStmt.cpp test/FixIt/fixit-cxx0x.cpp test/SemaCXX/switch-0x.cpp test/SemaCXX/switch.cpp

Chris Lattner clattner at apple.com
Mon Nov 23 09:19:31 PST 2009


On Nov 23, 2009, at 5:46 AM, Douglas Gregor wrote:

> Author: dgregor
> Date: Mon Nov 23 07:46:08 2009
> New Revision: 89655
> 
> URL: http://llvm.org/viewvc/llvm-project?rev=89655&view=rev
> Log:
> Implement conversion from a switch condition with class type to an
> integral or enumeration type (vi user-defined conversions). Fixes PR5518.

Hi Doug,

Is it possible to pull the "c++ case" out of ActOnStartOfSwitchStmt into a static helper method?  This would reduce indentation and make the code much easier to follow.  It would even be nice to only call into the function when you have a "non-trivial" switch condition in C++ mode (i.e. not integer or enum)

-Chris






More information about the cfe-commits mailing list