- Timestamp:
- Nov 29, 2019, 1:47:14 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 0f9ceacb, ce7bdc4, e71c1d4
- Parents:
- 397c101a
- Location:
- tests
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
tests/.expect/references.txt
r397c101a r78cdb06 36 36 3 37 37 3 9 { 1., 7. }, [1, 2, 3] 38 4 38 39 Destructing a Y 39 40 Destructing a Y -
tests/references.cfa
r397c101a r78cdb06 119 119 f( 3, a + b, (S){ 1.0, 7.0 }, (int [3]){ 1, 2, 3 } ); // two rvalue to reference 120 120 } 121 122 { 123 int a = 3; 124 int *p = &a; 125 asm ( 126 "incl %[p]\n\t" : 127 : [p] "m" (*p) 128 ); 129 printf("%d\n", a); 130 } 121 131 } 122 132
Note: See TracChangeset
for help on using the changeset viewer.