summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <programble@gmail.com>2016-10-08 00:58:56 -0400
committerJune McEnroe <programble@gmail.com>2016-10-08 00:58:56 -0400
commit154d04a4fa13b41d823932a41b8c779c1fccda33 (patch)
treebcbc7965be4fadb30d69670b944fe5013ec7430c
parentSet up jrp input loop (diff)
downloadsrc-154d04a4fa13b41d823932a41b8c779c1fccda33.tar.gz
src-154d04a4fa13b41d823932a41b8c779c1fccda33.zip
Fix jrp OR op
-rwxr-xr-x.bin/jrp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/.bin/jrp.c b/.bin/jrp.c
index d31d7993..7fffe83f 100755
--- a/.bin/jrp.c
+++ b/.bin/jrp.c
@@ -52,7 +52,7 @@ enum {
     HOP_REM  = 0x90d78948, // mov rdi, rdx
     HOP_NOT  = 0x90d7f748, // not rdi
     HOP_AND  = 0xc7214858, // pop rax; and rdi, rax
-    HOP_OR   = 0xc7904858, // pop rax; or rdi, rax
+    HOP_OR   = 0xc7094858, // pop rax; or rdi, rax
     HOP_XOR  = 0xc7314858, // pop rax; xor rdi, rax
 };
 
5a3&follow=1'>filter: split filter functions into their own fileJason A. Donenfeld 2014-01-10filter: make exit status localJason A. Donenfeld 2014-01-10parsing: fix header typoJason A. Donenfeld 2014-01-10cgit.c: Fix comment on bit mask hackLukas Fleischer 2014-01-10cgit.c: Use "else" for mutually exclusive branchesLukas Fleischer 2014-01-10ui-snapshot.c: Do not reinvent suffixcmp()Lukas Fleischer 2014-01-10Refactor cgit_parse_snapshots_mask()Lukas Fleischer 2014-01-10Disallow use of undocumented snapshot delimitersLukas Fleischer 2014-01-10Replace most uses of strncmp() with prefixcmp()Lukas Fleischer 2014-01-09README: Fix dependenciesLukas Fleischer 2014-01-08README: Spelling and formatting fixesLukas Fleischer 2014-01-08Fix UTF-8 with syntax-highlighting.pyPřemysl Janouch 2014-01-08Add a suggestion to the manpagePřemysl Janouch 2014-01-08Fix the example configurationPřemysl Janouch 2014-01-08Fix about-formatting.shPřemysl Janouch 2014-01-08Fix some spelling errorsPřemysl Janouch 2014-01-08filters: highlight.sh: add css comments for highlight 2.6 and 3.8Ferry Huberts