aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CodeGenModule.h
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2011-02-22 06:44:22 +0000
committerJohn McCall <rjmccall@apple.com>2011-02-22 06:44:22 +0000
commitc533cb7008cfc03f94da72029445bc429e39210d (patch)
tree40dfb309f9dd8a8eeab2db6963ce9d0ec8f2d543 /clang/lib/CodeGen/CodeGenModule.h
parentfb1a79af7aff4cec44a4a0d2a83bb081cf702151 (diff)
downloadllvm-c533cb7008cfc03f94da72029445bc429e39210d.zip
llvm-c533cb7008cfc03f94da72029445bc429e39210d.tar.gz
llvm-c533cb7008cfc03f94da72029445bc429e39210d.tar.bz2
Reorganize the emission of local variables.
llvm-svn: 126189
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r--clang/lib/CodeGen/CodeGenModule.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h
index b6bd37c..f1206a7 100644
--- a/clang/lib/CodeGen/CodeGenModule.h
+++ b/clang/lib/CodeGen/CodeGenModule.h
@@ -120,8 +120,11 @@ namespace CodeGen {
const llvm::PointerType *Int8PtrPtrTy;
};
- /// The width of an address-zero pointer.
+ /// The width of a pointer into the generic address space.
unsigned char PointerWidthInBits;
+
+ /// The alignment of a pointer into the generic address space.
+ unsigned char PointerAlignInBytes;
};
/// CodeGenModule - This class organizes the cross-function state that is used