File tree 1 file changed +5
-3
lines changed
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -103,8 +103,9 @@ static tysan_type_descriptor *getRootTD(tysan_type_descriptor *TD) {
103
103
}
104
104
105
105
// Walk up TDA to see if it reaches TDB
106
- static bool walkAliasTree (tysan_type_descriptor *TDA, tysan_type_descriptor *TDB,
107
- uptr OffsetA, uptr OffsetB) {
106
+ static bool walkAliasTree (tysan_type_descriptor *TDA,
107
+ tysan_type_descriptor *TDB, uptr OffsetA,
108
+ uptr OffsetB) {
108
109
do {
109
110
if (TDA == TDB)
110
111
return OffsetA == OffsetB;
@@ -160,7 +161,8 @@ static bool isAliasingLegalUp(tysan_type_descriptor *TDA,
160
161
}
161
162
162
163
static bool isAliasingLegalWithOffset (tysan_type_descriptor *TDA,
163
- tysan_type_descriptor *TDB, uptr OffsetB) {
164
+ tysan_type_descriptor *TDB,
165
+ uptr OffsetB) {
164
166
// This is handled by calls to isAliasingLegalUp.
165
167
if (OffsetB == 0 )
166
168
return false ;
You can’t perform that action at this time.
0 commit comments