aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'packages/xdctools/gnu')
-rw-r--r--packages/xdctools/gnu/targets/std.h11
1 files changed, 3 insertions, 8 deletions
diff --git a/packages/xdctools/gnu/targets/std.h b/packages/xdctools/gnu/targets/std.h
index 4301831..5fbcfe8 100644
--- a/packages/xdctools/gnu/targets/std.h
+++ b/packages/xdctools/gnu/targets/std.h
@@ -45,13 +45,8 @@ typedef signed char xdc_Int8;
45typedef unsigned char xdc_UInt8; 45typedef unsigned char xdc_UInt8;
46typedef short xdc_Int16; 46typedef short xdc_Int16;
47typedef unsigned short xdc_UInt16; 47typedef unsigned short xdc_UInt16;
48typedef int xdc_Int32; 48typedef int xdc_Int32;
49 49typedef unsigned int xdc_UInt32;
50#if defined(__ARM_ARCH_7M__) || defined(__ARM_ARCH_7EM__) /* Cortex M */
51 typedef unsigned xdc_UInt32;
52#else
53 typedef unsigned long xdc_UInt32;
54#endif
55 50
56__extension__ typedef long long xdc_Int64; 51__extension__ typedef long long xdc_Int64;
57__extension__ typedef unsigned long long xdc_UInt64; 52__extension__ typedef unsigned long long xdc_UInt64;
@@ -61,7 +56,7 @@ __extension__ typedef unsigned long long xdc_UInt64;
61 */ 56 */
62typedef unsigned char xdc_Bits8; 57typedef unsigned char xdc_Bits8;
63typedef unsigned short xdc_Bits16; 58typedef unsigned short xdc_Bits16;
64typedef unsigned int xdc_Bits32; 59typedef unsigned int xdc_Bits32;
65__extension__ typedef unsigned long long xdc_Bits64; 60__extension__ typedef unsigned long long xdc_Bits64;
66 61
67/* 62/*