cpu,opcodes,gas: use %r0 and %r6 instead of %a and %ctf in eBPF disassembler
[deliverable/binutils-gdb.git] / cpu / bpf.cpu
index b8a3a92e66ee4965ff2cee546824a579646824f2..aa01fbbb2eaad0504a50fcc6d48831a4e72444b3 100644 (file)
            ;; XXX the frame pointer fp is read-only, so it should
            ;; go in a different hardware.
            (;; ABI names.  Take priority when disassembling.
-            (a 0) (r1 1) (r2 2) (r3 3) (r4 4) (r5 5) (ctx 6)
+            (r0 0) (r1 1) (r2 2) (r3 3) (r4 4) (r5 5) (r6 6)
             (r7 7) (r8 8) (r9 9) (fp 10)
             ;; Additional names recognized when assembling.
-            (r0 0) (r6 6) (r10 10))))
+            (a 0) (ctx 6) (r10 10))))
 
 ;; The program counter.  CGEN requires it, even if it is not visible
 ;; to eBPF programs.
This page took 0.023729 seconds and 4 git commands to generate.