File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -249,8 +249,8 @@ class TypeLowering {
249249 IsTrivial_t isTrivial () const {
250250 return IsTrivial_t ((Flags & NonTrivialFlag) == 0 );
251251 }
252- IsTrivial_t isOrContainsRawPointer () const {
253- return IsTrivial_t ((Flags & HasRawPointerFlag) != 0 );
252+ HasRawPointer_t isOrContainsRawPointer () const {
253+ return HasRawPointer_t ((Flags & HasRawPointerFlag) != 0 );
254254 }
255255 IsFixedABI_t isFixedABI () const {
256256 return IsFixedABI_t ((Flags & NonFixedABIFlag) == 0 );
Original file line number Diff line number Diff line change @@ -4606,6 +4606,12 @@ void TypeLowering::print(llvm::raw_ostream &os) const {
46064606 << " isFixedABI: " << BOOL (Properties.isFixedABI ()) << " .\n "
46074607 << " isAddressOnly: " << BOOL (Properties.isAddressOnly ()) << " .\n "
46084608 << " isResilient: " << BOOL (Properties.isResilient ()) << " .\n "
4609+ << " isTypeExpansionSensitive: "
4610+ << BOOL (Properties.isTypeExpansionSensitive ()) << " .\n "
4611+ << " isInfinite: " << BOOL (Properties.isInfinite ()) << " .\n "
4612+ << " isOrContainsRawPointer: " << BOOL (Properties.isOrContainsRawPointer ())
4613+ << " .\n "
4614+ << " isLexical: " << BOOL (Properties.isLexical ()) << " .\n "
46094615 << " \n " ;
46104616}
46114617
You can’t perform that action at this time.
0 commit comments