diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-07 20:01:36 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-07-07 20:01:36 +0000 |
commit | 6ff655117dda5f01ba41cbf95889d253b09fd2c9 (patch) | |
tree | 7e25392a342e393f26dfc69b42e4aef42068e41d /llvm/lib/Target/PowerPC/PowerPCInstrBuilder.h | |
parent | 9df9afddcf14a93ad731d8d91e47222cd08c83bd (diff) | |
download | bcm5719-llvm-6ff655117dda5f01ba41cbf95889d253b09fd2c9.tar.gz bcm5719-llvm-6ff655117dda5f01ba41cbf95889d253b09fd2c9.zip |
* Wrap long lines (comments and code)
* Tabs to spaces
llvm-svn: 14672
Diffstat (limited to 'llvm/lib/Target/PowerPC/PowerPCInstrBuilder.h')
-rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCInstrBuilder.h | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCInstrBuilder.h b/llvm/lib/Target/PowerPC/PowerPCInstrBuilder.h index 704e17c49b0..d400acf0df3 100644 --- a/llvm/lib/Target/PowerPC/PowerPCInstrBuilder.h +++ b/llvm/lib/Target/PowerPC/PowerPCInstrBuilder.h @@ -1,4 +1,4 @@ -//===-- PowerPCInstrBuilder.h - Functions to aid building PPC insts -*- C++ -*-===// +//===-- PowerPCInstrBuilder.h - Aides for building PPC insts ----*- C++ -*-===// // // The LLVM Compiler Infrastructure // @@ -12,12 +12,13 @@ // references. // // For reference, the order of operands for memory references is: -// (Operand), Dest Reg, Base Reg, and either Reg Index or Immediate Displacement. +// (Operand), Dest Reg, Base Reg, and either Reg Index or Immediate +// Displacement. // //===----------------------------------------------------------------------===// -#ifndef PPCINSTRBUILDER_H -#define PPCINSTRBUILDER_H +#ifndef POWERPC_INSTRBUILDER_H +#define POWERPC_INSTRBUILDER_H #include "llvm/CodeGen/MachineInstrBuilder.h" @@ -28,12 +29,13 @@ namespace llvm { /// reference has base register as the FrameIndex offset until it is resolved. /// This allows a constant offset to be specified as well... /// -inline const MachineInstrBuilder & -addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0, bool mem = true) { - if (mem) - return MIB.addSImm(Offset).addFrameIndex(FI); - else - return MIB.addFrameIndex(FI).addSImm(Offset); +inline const MachineInstrBuilder& +addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0, + bool mem = true) { + if (mem) + return MIB.addSImm(Offset).addFrameIndex(FI); + else + return MIB.addFrameIndex(FI).addSImm(Offset); } /// addConstantPoolReference - This function is used to add a reference to the @@ -42,7 +44,7 @@ addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0, bool m /// either machine code emission or assembly output. This allows an optional /// offset to be added as well. /// -inline const MachineInstrBuilder & +inline const MachineInstrBuilder& addConstantPoolReference(const MachineInstrBuilder &MIB, unsigned CPI, int Offset = 0) { return MIB.addSImm(Offset).addConstantPoolIndex(CPI); |