We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8d5bee commit 319f2c7Copy full SHA for 319f2c7
src/libblastrampoline.c
@@ -30,6 +30,8 @@ __attribute__((always_inline)) inline unsigned int get_forward_name_idx() {
30
asm("\t mov %%r12,%0" : "=r"(idx));
31
#elif defined(ARCH_i686)
32
asm("\t mov %%eax,%0" : "=r"(idx));
33
+#elif defined(ARCH_powerpc64le)
34
+ asm("\t addi %0,11,0" : "=r"(idx));
35
#elif defined(ARCH_riscv64)
36
asm("\t mov %%t4,%0" : "=r"(idx));
37
#elif defined(ARCH_x86_64)
0 commit comments