This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <cstdio> | |
#include <cassert> | |
// | |
// init | |
// | |
const int STACK_SIZE = 1000; | |
thread_local int stack[STACK_SIZE]; | |
int BP; |