Commit b7b93a71 authored by Dmitriy Vyukov's avatar Dmitriy Vyukov

runtime: fix code formatting

Place && at the end of line.
Offset expression continuation.

R=golang-codereviews, bradfitz
CC=golang-codereviews
https://golang.org/cl/55380044
parent 9cbd2fb1
......@@ -92,9 +92,9 @@ runtime·InitSizes(void)
// objects into the page, we might as well
// use just this size instead of having two
// different sizes.
if(sizeclass > 1
&& npages == runtime·class_to_allocnpages[sizeclass-1]
&& allocsize/size == allocsize/runtime·class_to_size[sizeclass-1]) {
if(sizeclass > 1 &&
npages == runtime·class_to_allocnpages[sizeclass-1] &&
allocsize/size == allocsize/runtime·class_to_size[sizeclass-1]) {
runtime·class_to_size[sizeclass-1] = size;
continue;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment