diff options
author | Chris Lattner <sabre@nondot.org> | 2011-07-18 04:24:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2011-07-18 04:24:23 +0000 |
commit | 2192fe50dac0e0333f013a025619faf5a574c7d4 (patch) | |
tree | ae1044f0d276b7f9b27464c69bea49cacb1729cc /clang/lib/CodeGen/CGBlocks.h | |
parent | 2cf16c90f9f650b173560ec63ac9b6bec3574707 (diff) | |
download | bcm5719-llvm-2192fe50dac0e0333f013a025619faf5a574c7d4.tar.gz bcm5719-llvm-2192fe50dac0e0333f013a025619faf5a574c7d4.zip |
de-constify llvm::Type, patch by David Blaikie!
llvm-svn: 135370
Diffstat (limited to 'clang/lib/CodeGen/CGBlocks.h')
-rw-r--r-- | clang/lib/CodeGen/CGBlocks.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGBlocks.h b/clang/lib/CodeGen/CGBlocks.h index 4d8dead2be8..6e71c1fdc04 100644 --- a/clang/lib/CodeGen/CGBlocks.h +++ b/clang/lib/CodeGen/CGBlocks.h @@ -176,7 +176,7 @@ public: /// because it gets set later in the block-creation process. mutable bool UsesStret : 1; - const llvm::StructType *StructureType; + llvm::StructType *StructureType; const BlockExpr *Block; CharUnits BlockSize; CharUnits BlockAlign; |