quickjs-tart

quickjs-based runtime for wallet-core logic
Log | Files | Refs | README | LICENSE

avx_asm.c (364B)


      1 void main() {
      2 #if defined(__amd64) || defined(__amd64__) || defined(__x86_64__)
      3 # if defined(__CYGWIN__) || defined(__MINGW32__) || defined(__MINGW64__) || defined(_WIN32) || defined(_WIN64)
      4 #  error Windows x86_64 calling conventions are not supported yet
      5 # endif
      6 /* neat */
      7 #else
      8 # error !x86_64
      9 #endif
     10 __asm__ __volatile__ ("vpunpcklqdq %xmm0,%xmm13,%xmm0");
     11 }