diff options
author | Kenneth Graunke <kenneth@whitecape.org> | 2010-04-21 23:47:07 -0700 |
---|---|---|
committer | Ian Romanick <ian.d.romanick@intel.com> | 2010-04-28 15:42:07 -0700 |
commit | 9d290d786d702cfc5eb7b6aefd6cb5b2c946ab88 (patch) | |
tree | 0a65f0b0547cd41680c29b2a9fad180addeef2b1 /ir.cpp | |
parent | 3b96996b7eb6e3603a5f138177867c3e856e0dfa (diff) |
Use "neg" when printing/reading unary negation rather than "-".
"-" is now only used for binary subtraction.
Diffstat (limited to 'ir.cpp')
-rw-r--r-- | ir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -111,7 +111,7 @@ ir_expression::get_num_operands(ir_expression_operation op) static const char *const operator_strs[] = { "~", "!", - "-", + "neg", "abs", "rcp", "rsq", |