summaryrefslogtreecommitdiffstats
path: root/debian/patches/do_not_inline_makeiv.patch
blob: 393e2ac7b73e7757cb9b7a10b383c5f7cc86aa59 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Do not inline MakeIV due toppc64 compiler issue

The ppc64 gcc compiler has an issue with MakeIv.

---
 src/tpm2/AlgorithmTests.c |    3 +++
 1 file changed, 3 insertions(+)

--- a/src/tpm2/AlgorithmTests.c
+++ b/src/tpm2/AlgorithmTests.c
@@ -179,6 +179,9 @@
 /* 10.2.1.4.1 MakeIv() */
 /* Internal function to make the appropriate IV depending on the mode. */
 static UINT32
+#if defined(__powerpc64__)
+__attribute__((noinline))
+#endif
 MakeIv(
        TPM_ALG_ID    mode,     // IN: symmetric mode
        UINT32        size,     // IN: block size of the algorithm