Slim RTL dumps print the RTL code NOT as !, but that is misleading:
its semantics are like the C operator ~. This fixes it.
* print-rtl.c (print_exp): Print NOT as "~" instead of as "!".
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@250913
138bc75d-0d04-0410-961f-
82ee72b054a4
+2017-08-07 Segher Boessenkool <segher@kernel.crashing.org>
+
+ * print-rtl.c (print_exp): Print NOT as "~" instead of as "!".
+
2017-08-07 Marek Polacek <polacek@redhat.com>
PR middle-end/81737
op[1] = XEXP (x, 1);
break;
case NOT:
- st[0] = "!";
+ st[0] = "~";
op[0] = XEXP (x, 0);
break;
case AND: