summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/ABIInfo.h
diff options
context:
space:
mode:
authorMichael J. Spencer <bigcheesegs@gmail.com>2010-10-19 06:39:39 +0000
committerMichael J. Spencer <bigcheesegs@gmail.com>2010-10-19 06:39:39 +0000
commitf5a1fbcdf3c8011f69ea4bb4da3bd2368b836a81 (patch)
tree26d11cc0159cd8323bb8bd1b6c23b12df484c1e3 /clang/lib/CodeGen/ABIInfo.h
parent46a04f86dfb8891f7e0f97fccd68a3f55414333c (diff)
downloadbcm5719-llvm-f5a1fbcdf3c8011f69ea4bb4da3bd2368b836a81.tar.gz
bcm5719-llvm-f5a1fbcdf3c8011f69ea4bb4da3bd2368b836a81.zip
Fix Whitespace.
llvm-svn: 116798
Diffstat (limited to 'clang/lib/CodeGen/ABIInfo.h')
-rw-r--r--clang/lib/CodeGen/ABIInfo.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/clang/lib/CodeGen/ABIInfo.h b/clang/lib/CodeGen/ABIInfo.h
index c90c84a3524..ce1039849b7 100644
--- a/clang/lib/CodeGen/ABIInfo.h
+++ b/clang/lib/CodeGen/ABIInfo.h
@@ -74,7 +74,7 @@ namespace clang {
bool BoolData1;
ABIArgInfo(Kind K, const llvm::Type *TD=0,
- unsigned UI=0, bool B0 = false, bool B1 = false)
+ unsigned UI=0, bool B0 = false, bool B1 = false)
: TheKind(K), TypeData(TD), UIntData(UI), BoolData0(B0), BoolData1(B1) {}
public:
@@ -107,7 +107,7 @@ namespace clang {
bool canHaveCoerceToType() const {
return TheKind == Direct || TheKind == Extend;
}
-
+
// Direct/Extend accessors
unsigned getDirectOffset() const {
assert((isDirect() || isExtend()) && "Not a direct or extend kind");
@@ -117,12 +117,12 @@ namespace clang {
assert(canHaveCoerceToType() && "Invalid kind!");
return TypeData;
}
-
+
void setCoerceToType(const llvm::Type *T) {
assert(canHaveCoerceToType() && "Invalid kind!");
TypeData = T;
}
-
+
// Indirect accessors
unsigned getIndirectAlign() const {
assert(TheKind == Indirect && "Invalid kind!");
@@ -138,7 +138,7 @@ namespace clang {
assert(TheKind == Indirect && "Invalid kind!");
return BoolData1;
}
-
+
void dump() const;
};
@@ -147,10 +147,10 @@ namespace clang {
class ABIInfo {
public:
CodeGen::CodeGenTypes &CGT;
-
+
ABIInfo(CodeGen::CodeGenTypes &cgt) : CGT(cgt) {}
virtual ~ABIInfo();
-
+
ASTContext &getContext() const;
llvm::LLVMContext &getVMContext() const;
const llvm::TargetData &getTargetData() const;
OpenPOWER on IntegriCloud