summaryrefslogtreecommitdiffstats
path: root/qemu/roms/openbios/libgcc/libgcc.h
diff options
context:
space:
mode:
authorRajithaY <rajithax.yerrumsetty@intel.com>2017-04-25 03:31:15 -0700
committerRajitha Yerrumchetty <rajithax.yerrumsetty@intel.com>2017-05-22 06:48:08 +0000
commitbb756eebdac6fd24e8919e2c43f7d2c8c4091f59 (patch)
treeca11e03542edf2d8f631efeca5e1626d211107e3 /qemu/roms/openbios/libgcc/libgcc.h
parenta14b48d18a9ed03ec191cf16b162206998a895ce (diff)
Adding qemu as a submodule of KVMFORNFV
This Patch includes the changes to add qemu as a submodule to kvmfornfv repo and make use of the updated latest qemu for the execution of all testcase Change-Id: I1280af507a857675c7f81d30c95255635667bdd7 Signed-off-by:RajithaY<rajithax.yerrumsetty@intel.com>
Diffstat (limited to 'qemu/roms/openbios/libgcc/libgcc.h')
-rw-r--r--qemu/roms/openbios/libgcc/libgcc.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/qemu/roms/openbios/libgcc/libgcc.h b/qemu/roms/openbios/libgcc/libgcc.h
deleted file mode 100644
index fc82397dc..000000000
--- a/qemu/roms/openbios/libgcc/libgcc.h
+++ /dev/null
@@ -1,45 +0,0 @@
-#ifndef _LIBGCC_H
-#define _LIBGCC_H
-
-#include "asm/types.h"
-
-#ifndef NULL
-#define NULL ((void *)0)
-#endif
-
-typedef int SItype __attribute__ ((mode (SI)));
-typedef unsigned int USItype __attribute__ ((mode (SI)));
-typedef int DItype __attribute__ ((mode (DI)));
-typedef unsigned int UDItype __attribute__ ((mode (DI)));
-typedef int word_type __attribute__ ((mode (__word__)));
-
-uint64_t __udivmoddi4(uint64_t num, uint64_t den, uint64_t *rem);
-
-int64_t __divdi3(int64_t num, int64_t den);
-uint64_t __udivdi3(uint64_t num, uint64_t den);
-
-uint64_t __umoddi3(uint64_t num, uint64_t den);
-
-DItype __ashldi3 (DItype u, word_type b);
-DItype __lshrdi3 (DItype u, word_type b);
-DItype __ashrdi3 (DItype u, word_type b);
-
-// Must be implemented outside:
-void __divide_error(void);
-
-#if defined(__arch64__) || defined(__LP64__)
-typedef int TItype __attribute__ ((mode (TI)));
-
-__uint128_t __udivmodti4(__uint128_t num, __uint128_t den, __uint128_t *rem);
-
-__int128_t __divti3(__int128_t num, __int128_t den);
-__uint128_t __udivti3(__uint128_t num, __uint128_t den);
-
-__uint128_t __umodti3(__uint128_t num, __uint128_t den);
-
-TItype __multi3 (TItype u, TItype v);
-TItype __negti2 (TItype u);
-
-#endif
-
-#endif /* _LIBGCC_H */