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

llvm-svn: 119762
This commit is contained in:
Bill Wendling 2010-11-19 00:05:15 +00:00
parent 2063b84297
commit 2ecfcbd2aa
1 changed files with 2 additions and 2 deletions

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;
}