Changed minimum supported PowerPC CPU comment

Changed it from POWER8 to POWER7 due to the last one
supports VSX too.
This commit is contained in:
Vadim Barkov 2017-02-10 07:33:06 +00:00
parent 310dee21f7
commit 483bcad21d

View File

@ -22,7 +22,7 @@
#if PNG_POWERPC_VSX_OPT > 0 #if PNG_POWERPC_VSX_OPT > 0
#ifndef __VSX__ #ifndef __VSX__
# error "This code requires VSX support (POWER8 and later). Please provide -mvsx compiler flag." # error "This code requires VSX support (POWER7 and later). Please provide -mvsx compiler flag."
#endif #endif
#define vec_ld_unaligned(vec,data) vec = vec_vsx_ld(0,data) #define vec_ld_unaligned(vec,data) vec = vec_vsx_ld(0,data)