Skip to content

Commit 21d139d

Browse files
committed
missed a __volatile__
1 parent 0ca4971 commit 21d139d

File tree

1 file changed

+1
-1
lines changed
  • tools/swift-inspect/Sources/AndroidCLib

1 file changed

+1
-1
lines changed

tools/swift-inspect/Sources/AndroidCLib/heap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ static void heap_iterate_callback(unsigned long base, unsigned long size, void *
6767
}
6868
data[data[NEXT_FREE_IDX]++] = base;
6969
data[data[NEXT_FREE_IDX]++] = size;
70-
__asm__ __volatile(".local heap_iterate_callback_end");
70+
__asm__ __volatile__(".local heap_iterate_callback_end");
7171
__asm__ __volatile__("heap_iterate_callback_end:");
7272
}
7373

0 commit comments

Comments
 (0)