Changes in src/AST/Convert.cpp [6e50a6b:2d019af]
- File:
-
- 1 edited
-
src/AST/Convert.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/Convert.cpp
r6e50a6b r2d019af 2415 2415 } 2416 2416 2417 virtual void visit( const DimensionExpr * old ) override final {2418 // DimensionExpr gets desugared away in Validate.2419 // As long as new-AST passes don't use it, this cheap-cheerful error2420 // detection helps ensure that these occurrences have been compiled2421 // away, as expected. To move the DimensionExpr boundary downstream2422 // or move the new-AST translation boundary upstream, implement2423 // DimensionExpr in the new AST and implement a conversion.2424 (void) old;2425 assert(false && "DimensionExpr should not be present at new-AST boundary");2426 }2427 2428 2417 virtual void visit( const AsmExpr * old ) override final { 2429 2418 this->node = visitBaseExpr( old,
Note:
See TracChangeset
for help on using the changeset viewer.