xbyak/test/lib_test.cpp
MITSUNARI Shigeo d548d02e2c add lib test
2012-12-02 16:57:17 +09:00

17 lines
203 B
C++

#include <xbyak/xbyak.h>
struct Code : public Xbyak::CodeGenerator {
Code()
{
mov(eax, 5);
ret();
}
};
int ret123()
{
static Code code;
int (*f)() = (int (*)())code.getCode();
return f();
}