Changes in src/Parser/ExpressionNode.cc [6896548:3d8d7a7]
- File:
-
- 1 edited
-
src/Parser/ExpressionNode.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.cc
r6896548 r3d8d7a7 354 354 strtype = new BasicType( Type::Qualifiers( Type::Const ), BasicType::Char ); 355 355 } // switch 356 Expression * ret = new ConstantExpr( Constant::from_string( str, strtype ) ); 356 ArrayType * at = new ArrayType( noQualifiers, strtype, 357 new ConstantExpr( Constant::from_ulong( str.size() + 1 - 2 ) ), // +1 for '\0' and -2 for '"' 358 false, false ); 359 Expression * ret = new ConstantExpr( Constant( at, str, (unsigned long long int)0 ) ); // constant 0 is ignored for pure string value 357 360 if ( units.length() != 0 ) { 358 361 ret = new UntypedExpr( new NameExpr( units ), { ret } );
Note:
See TracChangeset
for help on using the changeset viewer.