diff options
Diffstat (limited to 'qemu/tests/tcg/cris/sys.h')
-rw-r--r-- | qemu/tests/tcg/cris/sys.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/qemu/tests/tcg/cris/sys.h b/qemu/tests/tcg/cris/sys.h new file mode 100644 index 000000000..c5f88e1a2 --- /dev/null +++ b/qemu/tests/tcg/cris/sys.h @@ -0,0 +1,16 @@ +#include <unistd.h> + +#define STRINGIFY(x) #x +#define TOSTRING(x) STRINGIFY(x) + +#define CURRENT_LOCATION __FILE__ ":" TOSTRING(__LINE__) + +#define err() \ +{ \ + _fail("at " CURRENT_LOCATION " "); \ +} + +#define mb() asm volatile ("" : : : "memory") + +void pass(void); +void _fail(char *reason); |