ConstantFolding can currently return partially folded constants if certain folds create new GEP expressions. These GEPs may be created with incorrect index types by the DL-independent layer, in which case ConstantFolding will change them to be DL-conforming.
I'm fixing this by explicitly re-running ConstantFolding in the two places I have found where this can occur (they create zero-index GEPs from bitcasts). I have to say that this is fairly ugly (especially as some care has to be taken to avoid infinite recursion), but I'm not sure how else to handle this.