4db4a6
commit 33aba8eef68b1745d3de96b609ff8296b70d9a1c
4db4a6
Author: Paul Floyd <pjfloyd@wanadoo.fr>
4db4a6
Date:   Wed Oct 27 21:37:00 2021 +0200
4db4a6
4db4a6
    Bug 444495 - dhat/tests/copy fails on s390x
4db4a6
    
4db4a6
    Add -fno-builtin to ensure that the copy functions get called and so dhat
4db4a6
    can intercept and count them.
4db4a6
4db4a6
diff --git a/dhat/tests/Makefile.am b/dhat/tests/Makefile.am
4db4a6
index 86a9b6d64..b86fc416d 100644
4db4a6
--- a/dhat/tests/Makefile.am
4db4a6
+++ b/dhat/tests/Makefile.am
4db4a6
@@ -29,3 +29,6 @@ AM_CXXFLAGS += $(AM_FLAG_M3264_PRI)
4db4a6
 # We don't care about uninitialized or unused malloc results
4db4a6
 basic_CFLAGS  = $(AM_CFLAGS) -Wno-uninitialized
4db4a6
 big_CFLAGS  = $(AM_CFLAGS) -Wno-unused-result
4db4a6
+
4db4a6
+# Prevent the copying functions from being inlined
4db4a6
+copy_CFLAGS = $(AM_CFLAGS) -fno-builtin