mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-11 14:01:48 +00:00
(When generating 64-bit code, ensure that any addresses used in 4 or 8 byte loads or stores of the form reg+imm have the lowest 2 bits of imm set to zero, so that they can safely be used in ld/ldu/lda/std/stdu instructions.) git-svn-id: svn://svn.valgrind.org/valgrind/trunk@6645
22 lines
717 B
Makefile
22 lines
717 B
Makefile
|
|
noinst_SCRIPTS = filter_stderr
|
|
|
|
EXTRA_DIST = $(noinst_SCRIPTS) \
|
|
jm-int.stderr.exp jm-int.stdout.exp jm-int.vgtest \
|
|
jm-fp.stderr.exp jm-fp.stdout.exp jm-fp.vgtest \
|
|
jm-vmx.stderr.exp jm-vmx.stdout.exp jm-vmx.vgtest \
|
|
lsw.stderr.exp lsw.stdout.exp lsw.vgtest \
|
|
std_reg_imm.vgtest std_reg_imm.stderr.exp std_reg_imm.stdout.exp \
|
|
round.stderr.exp round.stdout.exp round.vgtest \
|
|
twi_tdi.stderr.exp twi_tdi.stdout.exp twi_tdi.vgtest
|
|
|
|
check_PROGRAMS = \
|
|
jm-insns lsw round std_reg_imm twi_tdi
|
|
|
|
AM_CFLAGS = $(WERROR) -Winline -Wall -Wshadow -g -I$(top_srcdir)/include \
|
|
@FLAG_M64@
|
|
AM_CXXFLAGS = $(AM_CFLAGS) @FLAG_M64@
|
|
|
|
jm_insns_CFLAGS = -Winline -Wall -O -mregnames -DHAS_ALTIVEC -maltivec \
|
|
@FLAG_M64@
|