Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.7 9 lines 316 B view raw
1// SPDX-License-Identifier: GPL-2.0 2// Copyright (c) 2019 Facebook 3#define STACK_MAX_LEN 600 4/* clang will not unroll the loop 600 times. 5 * Instead it will unroll it to the amount it deemed 6 * appropriate, but the loop will still execute 600 times. 7 * Total program size is around 90k insns 8 */ 9#include "pyperf.h"