Changes in src/CodeGen/OperatorTable.cc [e5f2a67:58dd019]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/OperatorTable.cc
re5f2a67 r58dd019 10 10 // Created On : Mon May 18 07:44:20 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat Jul 15 17:12:22 201713 // Update Count : 1 512 // Last Modified On : Tue Dec 13 14:33:05 2016 13 // Update Count : 10 14 14 // 15 15 16 #include <map> // for map, _Rb_tree_const_iterator, map<>::const_iterator 17 #include <utility> // for pair 18 16 #include <map> 19 17 #include "OperatorTable.h" 20 18 … … 35 33 { "++?", "++", "_operator_preincr", OT_PREFIXASSIGN }, 36 34 { "--?", "--", "_operator_predecr", OT_PREFIXASSIGN }, 37 { "?\\?", "\\", "_operator_exponential", OT_INFIX },38 35 { "?*?", "*", "_operator_multiply", OT_INFIX }, 39 36 { "?/?", "/", "_operator_divide", OT_INFIX }, … … 53 50 { "?|?", "|", "_operator_bitor", OT_INFIX }, 54 51 { "?=?", "=", "_operator_assign", OT_INFIXASSIGN }, 55 { "?\\=?", "\\=", "_operator_expassign", OT_INFIXASSIGN },56 52 { "?*=?", "*=", "_operator_multassign", OT_INFIXASSIGN }, 57 53 { "?/=?", "/=", "_operator_divassign", OT_INFIXASSIGN },
Note:
See TracChangeset
for help on using the changeset viewer.