An 'unreachable' shouldn't have a '0 &&' prefix.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119762 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2010-11-19 00:05:15 +00:00
parent 50d0f58944
commit d1fadd8c5d

View File

@ -421,8 +421,8 @@ getMovtImmOpValue(const MCInst &MI, unsigned OpIdx,
}
Fixups.push_back(MCFixup::Create(0, Expr, Kind));
return 0;
};
llvm_unreachable(0 && "Unsupported MCExpr type in MCOperand");
}
llvm_unreachable("Unsupported MCExpr type in MCOperand");
return 0;
}