mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-01 17:32:36 +00:00
tidy whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81201 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
467036058b
commit
8b4ada248a
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user