Skip to content

Commit 70fa4f3

Browse files
committed
Fixing the style broke the style
1 parent 9698680 commit 70fa4f3

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

compiler-rt/lib/tysan/tysan.cpp

+5-3
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,9 @@ static tysan_type_descriptor *getRootTD(tysan_type_descriptor *TD) {
103103
}
104104

105105
// 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) {
108109
do {
109110
if (TDA == TDB)
110111
return OffsetA == OffsetB;
@@ -160,7 +161,8 @@ static bool isAliasingLegalUp(tysan_type_descriptor *TDA,
160161
}
161162

162163
static bool isAliasingLegalWithOffset(tysan_type_descriptor *TDA,
163-
tysan_type_descriptor *TDB, uptr OffsetB) {
164+
tysan_type_descriptor *TDB,
165+
uptr OffsetB) {
164166
// This is handled by calls to isAliasingLegalUp.
165167
if (OffsetB == 0)
166168
return false;

0 commit comments

Comments
 (0)