tidy whitespace.

llvm-svn: 81201
This commit is contained in:
Chris Lattner 2009-09-08 06:27:48 +00:00
parent a8cb3dffe9
commit a0020be758
1 changed files with 4 additions and 7 deletions

View File

@ -80,16 +80,13 @@ void MCExpr::dump() const {
/* *** */
const MCBinaryExpr * MCBinaryExpr::Create(Opcode Opc,
const MCExpr *LHS,
const MCExpr *RHS,
MCContext &Ctx) {
const MCBinaryExpr *MCBinaryExpr::Create(Opcode Opc, const MCExpr *LHS,
const MCExpr *RHS, MCContext &Ctx) {
return new (Ctx) MCBinaryExpr(Opc, LHS, RHS);
}
const MCUnaryExpr * MCUnaryExpr::Create(Opcode Opc,
const MCExpr *Expr,
MCContext &Ctx) {
const MCUnaryExpr *MCUnaryExpr::Create(Opcode Opc, const MCExpr *Expr,
MCContext &Ctx) {
return new (Ctx) MCUnaryExpr(Opc, Expr);
}