xbyak/test/lib_test.cpp

14 lines
156 B
C++
Raw Normal View History

2012-12-02 12:28:30 +00:00
#include "lib.h"
2012-12-02 07:57:17 +00:00
2012-12-02 12:28:30 +00:00
void init()
2012-12-02 07:57:17 +00:00
{
2012-12-02 12:28:30 +00:00
static bool init = true;
printf("in lib_test %d\n", init);
if (!init) return;
init = false;
2012-12-03 00:09:18 +00:00
X::a.put();
2012-12-04 07:12:59 +00:00
putReg();
2012-12-02 07:57:17 +00:00
}
2012-12-03 00:09:18 +00:00