Skip to content

Commit 53b138e

Browse files
committed
Hide output (it's too much bother making printing the first instance
only non-racy)
1 parent b370e6a commit 53b138e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler-rt/test/asan/TestCases/fakestack_alignment.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ bool misaligned = false;
3636
void *Thread(void *unused) {
3737
big_object x;
3838
uint alignment = (unsigned long)&x % alignof(big_object);
39-
if (alignment != 0) {
40-
printf("Thread: address modulo alignment is %u\n", alignment);
39+
40+
if (alignment != 0)
4141
misaligned = true;
42-
}
42+
4343
return NULL;
4444
}
4545

0 commit comments

Comments
 (0)