Changeset f80f840 for tests/references.cfa
- Timestamp:
- Dec 10, 2019, 4:24:49 PM (5 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 2a3d446
- Parents:
- b798713 (diff), e307e12 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/references.cfa
rb798713 rf80f840 124 124 int *p = &a; 125 125 asm ( 126 "incl %[p]\n\t" :127 : [p] " m" (*p)126 "incl %[p]\n\t" 127 : [p] "+m" (*p) 128 128 ); 129 129 printf("%d\n", a);
Note: See TracChangeset
for help on using the changeset viewer.