Add pack_struct_start and pack_struct_end definitions for ICCARM.

This commit is contained in:
Richard Barry 2011-04-22 14:13:51 +00:00
parent 218c59e058
commit 290e7bd222
2 changed files with 10 additions and 0 deletions

View file

@ -21,3 +21,8 @@
; ;
#pragma pack() #pragma pack()
#endif #endif
#ifdef __ICCARM__
;
#pragma pack()
#endif

View file

@ -22,3 +22,8 @@
#ifdef __ICCRX__ #ifdef __ICCRX__
#pragma pack(1) #pragma pack(1)
#endif #endif
#ifdef __ICCARM__
#pragma pack(1)
#endif