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 {
249
249
IsTrivial_t isTrivial () const {
250
250
return IsTrivial_t ((Flags & NonTrivialFlag) == 0 );
251
251
}
252
- IsTrivial_t isOrContainsRawPointer () const {
253
- return IsTrivial_t ((Flags & HasRawPointerFlag) != 0 );
252
+ HasRawPointer_t isOrContainsRawPointer () const {
253
+ return HasRawPointer_t ((Flags & HasRawPointerFlag) != 0 );
254
254
}
255
255
IsFixedABI_t isFixedABI () const {
256
256
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 {
4606
4606
<< " isFixedABI: " << BOOL (Properties.isFixedABI ()) << " .\n "
4607
4607
<< " isAddressOnly: " << BOOL (Properties.isAddressOnly ()) << " .\n "
4608
4608
<< " 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 "
4609
4615
<< " \n " ;
4610
4616
}
4611
4617
You can’t perform that action at this time.
0 commit comments