Skip to content

Commit 6baa9b0

Browse files
committed
AIX changes for Power8
1 parent 3938e59 commit 6baa9b0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

common_power.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@
6060
#define XXSWAPD(T,A) xxswapd T, A
6161
#define XVMOVDP(T,A) xvmovdp T, A
6262

63-
#define XXSPLTD_S(T,A,z) "xxspltd T, A, z \n\t"
64-
#define XXMRGHD_S(T,A,B) "xxmrghd T, A, B \n\t"
65-
#define XXMRGLD_S(T,A,B) "xxmrgld T, A, B \n\t"
66-
#define XXSWAPD_S(T,A) "xxswapd T, A"
63+
#define XXSPLTD_S(T,A,z) "xxspltd " str(T) ", " str(A) ", " str(z)" \n\t"
64+
#define XXMRGHD_S(T,A,B) "xxmrghd " str(T) ", " str(A) ", " str(B)" \n\t"
65+
#define XXMRGLD_S(T,A,B) "xxmrgld " str(T) ", " str(A) ", " str(B)" \n\t"
66+
#define XXSWAPD_S(T,A) "xxswapd " str(T) ", " str(A) " \n\t"
6767

6868
#endif
6969

kernel/Makefile.L3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ ifeq ($(OS), AIX)
10981098
$(CC) -c $(CFLAGS) -DTRSMKERNEL -UCOMPLEX -DDOUBLE -UUPPER -DLT -UCONJ dtrsm_kernel_lt_nomacros.s -o $@
10991099
rm dtrsm_kernel_lt.s dtrsm_kernel_lt_nomacros.s
11001100
else
1101-
$(CC) $(CFLAGS) -DTRSMKERNEL -UCOMPLEX -DDOUBLE -UUPPER -DLT -UCONJ $< -o $@
1101+
$(CC) -c $(CFLAGS) -DTRSMKERNEL -UCOMPLEX -DDOUBLE -UUPPER -DLT -UCONJ $< -o $@
11021102
endif
11031103

11041104
$(KDIR)dtrsm_kernel_RN$(TSUFFIX).$(SUFFIX) : $(KERNELDIR)/$(DTRSMKERNEL_RN) $(DTRSMDEPEND)

0 commit comments

Comments
 (0)