diff options
author | Daniel Dunbar <daniel@zuster.org> | 2010-03-30 22:26:07 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2010-03-30 22:26:07 +0000 |
commit | f858da63ace0c810b6d6c67b3784b230c7d2417b (patch) | |
tree | 220a9d316c0db23919324200b6d50e8cbfd31407 /lib/CodeGen/CodeGenTypes.h | |
parent | e2f5ba9d80cfadbb3e1dafb9f375eb526f669b85 (diff) |
Minor formatting/FIXME cleanups.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99944 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenTypes.h')
-rw-r--r-- | lib/CodeGen/CodeGenTypes.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/CodeGen/CodeGenTypes.h b/lib/CodeGen/CodeGenTypes.h index 173c4ad378..9a620e4c01 100644 --- a/lib/CodeGen/CodeGenTypes.h +++ b/lib/CodeGen/CodeGenTypes.h @@ -69,7 +69,7 @@ namespace CodeGen { public: CGRecordLayout(const llvm::Type *T, bool ContainsPointerToDataMember) - : LLVMType(T), ContainsPointerToDataMember(ContainsPointerToDataMember) { } + : LLVMType(T), ContainsPointerToDataMember(ContainsPointerToDataMember) {} /// getLLVMType - Return llvm type associated with this record. const llvm::Type *getLLVMType() const { @@ -107,8 +107,6 @@ class CodeGenTypes { /// CGRecordLayouts - This maps llvm struct type with corresponding /// record layout info. - /// FIXME : If CGRecordLayout is less than 16 bytes then use - /// inline it in the map. llvm::DenseMap<const Type*, CGRecordLayout *> CGRecordLayouts; /// FieldInfo - This maps struct field with corresponding llvm struct type |