[PATCH] D61512: [Docs][CodeGenerator][eBPF] Correct the values for BPF_X and BPF_K

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri May 3 09:38:14 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL359904: [Docs][CodeGenerator][eBPF] Correct the values for BPF_X and BPF_K (authored by yhs, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D61512?vs=198010&id=198037#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D61512/new/

https://reviews.llvm.org/D61512

Files:
  llvm/trunk/docs/CodeGenerator.rst


Index: llvm/trunk/docs/CodeGenerator.rst
===================================================================
--- llvm/trunk/docs/CodeGenerator.rst
+++ llvm/trunk/docs/CodeGenerator.rst
@@ -2527,8 +2527,8 @@
 
 ::
 
-  BPF_X     0x0  use src_reg register as source operand
-  BPF_K     0x1  use 32 bit immediate as source operand
+  BPF_X     0x1  use src_reg register as source operand
+  BPF_K     0x0  use 32 bit immediate as source operand
 
 and four MSB bits store operation code
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D61512.198037.patch
Type: text/x-patch
Size: 487 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190503/9e8359a6/attachment.bin>


More information about the llvm-commits mailing list