SSE2 Compiler Error

前端 未结 1 1745
盖世英雄少女心
盖世英雄少女心 2021-01-21 20:02

I\'m trying to break into SSE2 and tried the following example program:

#include \"stdafx.h\"    
#include 

int main(int argc, char* argv[])
         


        
相关标签:
1条回答
  • 2021-01-21 20:30

    Well the error goes away if you change

    muludq xmm0, xmm1
    

    to

    pmuludq xmm0, xmm1
    

    Are you sure you didn't just miss a p there?

    Edit: In fact im pretty definite you did because I've never heard of muludq. In fact i replaced it with mcow (which i KNOW doesn't exist) and got the same error.

    0 讨论(0)
提交回复
热议问题