From 23209c84b2cb01f8b93a046dcd31be90d61d0531 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sat, 23 Jan 2016 14:28:45 -0800 Subject: [PATCH] Add orps and orpd SSE2 instructions. --- src/compiler/x86/insts.lisp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/compiler/x86/insts.lisp b/src/compiler/x86/insts.lisp index ec29ea799..0a63c0bf8 100644 --- a/src/compiler/x86/insts.lisp +++ b/src/compiler/x86/insts.lisp @@ -3146,6 +3146,8 @@ ;; logical (define-regular-sse-inst andpd #x66 #x54 t) (define-regular-sse-inst andps nil #x54) + (define-regular-sse-inst orpd #x66 #x56 t) + (define-regular-sse-inst orps nil #x56) (define-regular-sse-inst xorpd #x66 #x57 t) (define-regular-sse-inst xorps nil #x57) ;; comparison -- GitLab