static bool HasEnumType(Expr *E) {
// Strip off implicit integral promotions.
while (ImplicitCastExpr *ICE = dyn_cast<ImplicitCastExpr>(E)) {
- switch (ICE->getCastKind()) {
- case CK_IntegralCast:
- case CK_NoOp:
- E = ICE->getSubExpr();
- continue;
- default:
+ if (ICE->getCastKind() != CK_IntegralCast &&
+ ICE->getCastKind() != CK_NoOp)
break;
- }
+ E = ICE->getSubExpr();
}
return E->getType()->isEnumeralType();
h(1); // expected-error{{use of undeclared identifier 'h'}}
return 0;
}
+
+// This one entered into an infinite loop.
+template <unsigned long N>
+void rdar8520617() {
+ if (N > 1) { } // expected-warning {{comparison of 0 > unsigned expression is always false}}
+}
+
+int f2() {
+ rdar8520617<0>(); // expected-note {{in instantiation}}
+}
+