Changes in src/Parser/ExpressionNode.cc [9ddcee1:6cef439]
- File:
-
- 1 edited
-
src/Parser/ExpressionNode.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/ExpressionNode.cc
r9ddcee1 r6cef439 29 29 #include "DeclarationNode.h" // for DeclarationNode 30 30 #include "InitializerNode.h" // for InitializerNode 31 #include "TypeData.h" // for addType, build_basic_type, build_c... 31 32 #include "parserutility.h" // for notZeroExpr 32 33 … … 316 317 v2 ); 317 318 ret = build_compoundLiteral( location, 318 DeclarationNode::new BasicType(319 DeclarationNode::Int128320 )->addType(321 DeclarationNode::newSignedNess( DeclarationNode::Unsigned) ),319 DeclarationNode::newFromTypeData( 320 addType( 321 build_basic_type( DeclarationNode::Int128 ), 322 build_signedness( DeclarationNode::Unsigned ) ) ), 322 323 new InitializerNode( 323 ( InitializerNode *)(new InitializerNode( new ExpressionNode( v2 == 0 ? ret2 : ret ) ))->set_last( new InitializerNode( new ExpressionNode( v2 == 0 ? ret : ret2 ) ) ), true )324 (new InitializerNode( new ExpressionNode( v2 == 0 ? ret2 : ret ) ))->set_last( new InitializerNode( new ExpressionNode( v2 == 0 ? ret : ret2 ) ) ), true ) 324 325 ); 325 326 } else { // explicit length, (length_type)constant
Note:
See TracChangeset
for help on using the changeset viewer.