Skip to content

Commit f5a1fbc

Browse files
committed
Fix Whitespace.
llvm-svn: 116798
1 parent 46a04f8 commit f5a1fbc

File tree

5 files changed

+126
-126
lines changed

5 files changed

+126
-126
lines changed

clang/lib/CodeGen/ABIInfo.h

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ namespace clang {
7474
bool BoolData1;
7575

7676
ABIArgInfo(Kind K, const llvm::Type *TD=0,
77-
unsigned UI=0, bool B0 = false, bool B1 = false)
77+
unsigned UI=0, bool B0 = false, bool B1 = false)
7878
: TheKind(K), TypeData(TD), UIntData(UI), BoolData0(B0), BoolData1(B1) {}
7979

8080
public:
@@ -107,7 +107,7 @@ namespace clang {
107107
bool canHaveCoerceToType() const {
108108
return TheKind == Direct || TheKind == Extend;
109109
}
110-
110+
111111
// Direct/Extend accessors
112112
unsigned getDirectOffset() const {
113113
assert((isDirect() || isExtend()) && "Not a direct or extend kind");
@@ -117,12 +117,12 @@ namespace clang {
117117
assert(canHaveCoerceToType() && "Invalid kind!");
118118
return TypeData;
119119
}
120-
120+
121121
void setCoerceToType(const llvm::Type *T) {
122122
assert(canHaveCoerceToType() && "Invalid kind!");
123123
TypeData = T;
124124
}
125-
125+
126126
// Indirect accessors
127127
unsigned getIndirectAlign() const {
128128
assert(TheKind == Indirect && "Invalid kind!");
@@ -138,7 +138,7 @@ namespace clang {
138138
assert(TheKind == Indirect && "Invalid kind!");
139139
return BoolData1;
140140
}
141-
141+
142142
void dump() const;
143143
};
144144

@@ -147,10 +147,10 @@ namespace clang {
147147
class ABIInfo {
148148
public:
149149
CodeGen::CodeGenTypes &CGT;
150-
150+
151151
ABIInfo(CodeGen::CodeGenTypes &cgt) : CGT(cgt) {}
152152
virtual ~ABIInfo();
153-
153+
154154
ASTContext &getContext() const;
155155
llvm::LLVMContext &getVMContext() const;
156156
const llvm::TargetData &getTargetData() const;

0 commit comments

Comments
 (0)