Changes in src/Parser/parseutility.cc [e82aa9df:4cb935e]
- File:
-
- 1 edited
-
src/Parser/parseutility.cc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Parser/parseutility.cc
re82aa9df r4cb935e 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // parseutility.cc -- 7 // parseutility.cc -- 8 8 // 9 9 // Author : Rodolfo G. Esteves … … 12 12 // Last Modified On : Sun Aug 14 23:45:03 2016 13 13 // Update Count : 3 14 // 14 // 15 15 16 16 #include "parseutility.h" … … 26 26 UntypedExpr *comparison = new UntypedExpr( new NameExpr( "?!=?" ) ); 27 27 comparison->get_args().push_back( orig ); 28 comparison->get_args().push_back( new NameExpr( "0") );28 comparison->get_args().push_back( new ConstantExpr( Constant( new ZeroType( emptyQualifiers ), "0" ) ) ); 29 29 return new CastExpr( comparison, new BasicType( Type::Qualifiers(), BasicType::SignedInt ) ); 30 30 }
Note:
See TracChangeset
for help on using the changeset viewer.