low_add_int_ptr.c 247 Bytes BlameHistoryPermalink Edit 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 ////A: --has-swar //C: -daiteq-swar-enable #include <stdint.h> typedef unsigned int su10x3b __attribute__((subword(3))); int main(void) { volatile unsigned int a,b,z; int *pa = &a, *pb = &b, *pz = &z; *pz = *pa + *pb; return 0; }