Commit r315884 introduced a build issue for VS 2015 Update 3 in the
RelWithDebInfo build. The issue is a fatal internal error in the CL
compiler caused by the following line of code in the function
OperandMatcher::addTypeCheckPredicate:
addPredicate<LLTOperandMatcher>(*OpTyOrNone);
The workaround is to replace *OpTyOrNone with a local variable of type
const LLTCodeGen & referring to *OpTyOrNone.