1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-28 23:42:10 +03:00

Compiler optimizations for page checksum code.

Ants Aasma and Jeff Davis
This commit is contained in:
Simon Riggs
2013-04-30 06:59:26 +01:00
parent 3d53173e20
commit fdea2530bd
5 changed files with 169 additions and 0 deletions

View File

@ -219,6 +219,7 @@ CC = @CC@
GCC = @GCC@
SUN_STUDIO_CC = @SUN_STUDIO_CC@
CFLAGS = @CFLAGS@
CFLAGS_VECTOR = @CFLAGS_VECTOR@
# Kind-of compilers

View File

@ -15,3 +15,6 @@ include $(top_builddir)/src/Makefile.global
OBJS = bufpage.o checksum.o itemptr.o
include $(top_srcdir)/src/backend/common.mk
# important optimizations flags for checksum.c
checksum.o: CFLAGS += ${CFLAGS_VECTOR}