diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-03-25 12:15:49 +0100 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-03-25 12:15:49 +0100 |
commit | 029cda0ee7311ee887adebccda82ec0da764a726 (patch) | |
tree | 9905f9c1066a97244630b54d530feff0caa881d9 /include/arch | |
parent | cdd2c91952da3655fa960ef69bb6993cf5738be6 (diff) |
msp430fr5994lp-256k: aspectc support
AspectC++ is not aware of the type "__int20", so we need to map it to a type
known to AspectC++ (only for ag++, not g++) and fix its autogenerated
constructor signatures.
Diffstat (limited to 'include/arch')
-rw-r--r-- | include/arch/msp430fr5994lp/int20.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/arch/msp430fr5994lp/int20.h b/include/arch/msp430fr5994lp/int20.h new file mode 100644 index 0000000..d648f5c --- /dev/null +++ b/include/arch/msp430fr5994lp/int20.h @@ -0,0 +1,3 @@ +#ifdef __acweaving +#define __int20 long +#endif |