Skip to content

Commit 432fd99

Browse files
author
Rajalakshmi Srinivasaraghavan
committed
POWER10: dgemv builtin rename
Add check to use correct builtin name for older versions of gcc10 compilers.
1 parent 7da799d commit 432fd99

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

kernel/power/dgemv_t_power10.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@ USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3535

3636

3737
#if defined(HAVE_KERNEL4x8_ASM)
38+
#if !__has_builtin(__builtin_vsx_disassemble_pair)
39+
#define __builtin_vsx_disassemble_pair __builtin_mma_disassemble_pair
40+
#endif
3841
typedef __vector unsigned char vec_t;
3942
static void dgemv_kernel_4x8(BLASLONG n, BLASLONG lda, FLOAT *ap, FLOAT *x, FLOAT *y, FLOAT alpha) {
4043
BLASLONG i;

0 commit comments

Comments
 (0)