rtasm: export sse_movmskps
[mesa.git] / src / gallium / auxiliary / rtasm / rtasm_x86sse.c
index 57fcf6de2abc2aa745d02292f8be3cabd8f9408d..1acf3c373ebee1700b74463c834d1363a2098e3d 100644 (file)
@@ -993,6 +993,15 @@ void sse_pmovmskb( struct x86_function *p,
    emit_modrm(p, dst, src);
 }
 
+void sse_movmskps( struct x86_function *p,
+                   struct x86_reg dst,
+                   struct x86_reg src)
+{
+   DUMP_RR( dst, src );
+   emit_2ub(p, X86_TWOB, 0x50);
+   emit_modrm(p, dst, src);
+}
+
 /***********************************************************************
  * SSE2 instructions
  */