forked from OSchip/llvm-project
Silencing a warning about control flow reaching the end of a non-void function.
llvm-svn: 190304
This commit is contained in:
parent
60f62ad3d3
commit
c4280dd977
|
@ -122,6 +122,7 @@ createReplacementInstr(ConstantExpr *CE, Instruction *Instr) {
|
|||
default:
|
||||
assert(0 && "Unhandled constant expression!\n");
|
||||
}
|
||||
llvm_unreachable("Unhandled constant expression!\n");
|
||||
}
|
||||
|
||||
static bool replaceConstantExprOp(ConstantExpr *CE) {
|
||||
|
|
Loading…
Reference in New Issue