aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/CodeGenTypeCache.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/CodeGen/CodeGenTypeCache.h')
-rw-r--r--lib/CodeGen/CodeGenTypeCache.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenTypeCache.h b/lib/CodeGen/CodeGenTypeCache.h
index 47e26bcaa1b6..8ce9860cc638 100644
--- a/lib/CodeGen/CodeGenTypeCache.h
+++ b/lib/CodeGen/CodeGenTypeCache.h
@@ -60,6 +60,12 @@ struct CodeGenTypeCache {
llvm::PointerType *Int8PtrPtrTy;
};
+ /// void* in alloca address space
+ union {
+ llvm::PointerType *AllocaVoidPtrTy;
+ llvm::PointerType *AllocaInt8PtrTy;
+ };
+
/// The size and alignment of the builtin C type 'int'. This comes
/// up enough in various ABI lowering tasks to be worth pre-computing.
union {