clang generally doesn't try to partially analyze expressions of dependent type, so we don't do any analysis on e.g. "T* x = 0;". To put it another way, clang doesn't bother to distinguish between "T* x = 0" and "T x = 0;". The general case is rather complicated, and there isn't usually any benefit.
-Eli http://llvm-reviews.chandlerc.com/D136 _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
