]> git.eshelyaron.com Git - emacs.git/commitdiff
add comp_VECTORLIKEP
authorAndrea Corallo <andrea_corallo@yahoo.it>
Wed, 12 Jun 2019 20:11:20 +0000 (22:11 +0200)
committerAndrea Corallo <akrl@sdf.org>
Wed, 1 Jan 2020 10:33:41 +0000 (11:33 +0100)
src/comp.c

index d4f08df48eeb145f0b887fc134d33c3e7dc87b6f..3c837555d741878f118956d40f726da35c4c1a0a 100644 (file)
@@ -329,6 +329,12 @@ comp_TAGGEDP (gcc_jit_rvalue *obj, unsigned tag)
   return res;
 }
 
+static gcc_jit_rvalue *
+comp_VECTORLIKEP (gcc_jit_rvalue *obj)
+{
+  return comp_TAGGEDP(obj, Lisp_Vectorlike);
+}
+
 static gcc_jit_rvalue *
 comp_CONSP (gcc_jit_rvalue *obj)
 {