Found the case in the clang codebase where the assertion fires.
To avoid crashing assertion-enabled builds before I re-add the missing
operation.
Will restore the assertion alongside the upcoming fix.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@349061
91177308-0d34-0410-b5e6-
96231b3b80d8
case tok::arrowstar:
return QualType();
default:
- assert(false && "unhandled binary op");
+ // FIXME(ibiryukov): handle the missing op, re-add the assertion.
+ // assert(false && "unhandled binary op");
return QualType();
}
}