Changeset 3233b91
- Timestamp:
- Dec 3, 2020, 1:53:17 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 62e456f
- Parents:
- 2595df1
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/AlternativeFinder.cc
r2595df1 r3233b91 135 135 for(const auto & c : list) { 136 136 std::stringstream ss; 137 print( ss, *c, indentAmt );137 c.print( ss, indentAmt ); 138 138 sorted.push_back(ss.str()); 139 139 } -
tests/.expect/castError.oast.txt
r2595df1 r3233b91 6 6 with resolved type: 7 7 char Alternatives are: 8 Cost ( 1, 0, 0, 0, 0, 0, 0 ): Explicit Cast of: 9 Variable Expression: f: double 10 with resolved type: 11 double 12 ... to: 13 char 14 with resolved type: 15 char 16 (types: 17 char 18 ) 19 Environment: 20 8 21 Cost ( 1, 0, 0, 0, 0, 0, 0 ): Explicit Cast of: 9 22 Variable Expression: f: function … … 16 29 ... returning nothing 17 30 18 ... to:19 char20 with resolved type:21 char22 (types:23 char24 )25 Environment:26 27 Cost ( 1, 0, 0, 0, 0, 0, 0 ): Explicit Cast of:28 Variable Expression: f: double29 with resolved type:30 double31 31 ... to: 32 32 char … … 67 67 with resolved type: 68 68 signed int 69 Variable Expression: v: unsigned char69 Variable Expression: v: signed short int 70 70 with resolved type: 71 unsigned char71 signed short int 72 72 with resolved type: 73 unsigned char73 signed short int 74 74 ... to: nothing 75 75 with resolved type: … … 85 85 with resolved type: 86 86 signed int 87 Variable Expression: v: signed short int87 Variable Expression: v: unsigned char 88 88 with resolved type: 89 signed short int89 unsigned char 90 90 with resolved type: 91 signed short int91 unsigned char 92 92 ... to: nothing 93 93 with resolved type: -
tests/meta/.expect/archVast.oast.x64.txt
r2595df1 r3233b91 6 6 with resolved type: 7 7 char Alternatives are: 8 Cost ( 1, 0, 0, 0, 0, 0, 0 ): Explicit Cast of: 9 Variable Expression: FX64: double 10 with resolved type: 11 double 12 ... to: 13 char 14 with resolved type: 15 char 16 (types: 17 char 18 ) 19 Environment: 20 8 21 Cost ( 1, 0, 0, 0, 0, 0, 0 ): Explicit Cast of: 9 22 Variable Expression: FX64: function … … 16 29 ... returning nothing 17 30 18 ... to:19 char20 with resolved type:21 char22 (types:23 char24 )25 Environment:26 27 Cost ( 1, 0, 0, 0, 0, 0, 0 ): Explicit Cast of:28 Variable Expression: FX64: double29 with resolved type:30 double31 31 ... to: 32 32 char
Note: See TracChangeset
for help on using the changeset viewer.