diff options
author | aurel32 | 2008-09-04 22:24:14 +0200 |
---|---|---|
committer | aurel32 | 2008-09-04 22:24:14 +0200 |
commit | 59df7f62a9ba5358e7f2e2498d38d5f8719cc05a (patch) | |
tree | bd39457a4904cef7cd0531b87c10ffd599a76656 /target-alpha/helper.h | |
parent | ppc: Convert nip moves to TCG (diff) | |
download | qemu-59df7f62a9ba5358e7f2e2498d38d5f8719cc05a.tar.gz qemu-59df7f62a9ba5358e7f2e2498d38d5f8719cc05a.tar.xz qemu-59df7f62a9ba5358e7f2e2498d38d5f8719cc05a.zip |
alpha: add target-alpha/helper.h (missing from commit r5150)
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5161 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-alpha/helper.h')
-rw-r--r-- | target-alpha/helper.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/target-alpha/helper.h b/target-alpha/helper.h new file mode 100644 index 0000000000..ef2c55729a --- /dev/null +++ b/target-alpha/helper.h @@ -0,0 +1,10 @@ +#ifndef DEF_HELPER +#define DEF_HELPER(ret, name, params) ret name params; +#endif + +DEF_HELPER(void, helper_tb_flush, (void)) +#ifndef DEF_HELPER +#define DEF_HELPER(ret, name, params) ret name params; +#endif + +DEF_HELPER(void, helper_tb_flush, (void)) |