* Wrap long lines (comments and code)

* Tabs to spaces


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14672 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2004-07-07 20:01:36 +00:00
parent 5c45e6db39
commit e62cd37c2a

View File

@ -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"
@ -29,7 +30,8 @@ namespace llvm {
/// 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) {
addFrameReference(const MachineInstrBuilder &MIB, int FI, int Offset = 0,
bool mem = true) {
if (mem)
return MIB.addSImm(Offset).addFrameIndex(FI);
else