|
From: Carl L. <ca...@so...> - 2018-02-27 18:42:23
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=03c97360866c027bcc77d5c4872e66032dac3671 commit 03c97360866c027bcc77d5c4872e66032dac3671 Author: Carl Love <ca...@us...> Date: Tue Feb 27 12:41:43 2018 -0600 Bug 391164: constraint bug in tests/ppc64/test_isa_2_07_part1.c for mtfprwa Fix destination register constraint in assembly code in function test_mtfprwa in file none/tests/ppc64/test_isa_2_07_part1.c. Constraint changed from "=ws" to "=d". Diff: --- none/tests/ppc64/test_isa_2_07_part1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/none/tests/ppc64/test_isa_2_07_part1.c b/none/tests/ppc64/test_isa_2_07_part1.c index 73a563c..201fa88 100644 --- a/none/tests/ppc64/test_isa_2_07_part1.c +++ b/none/tests/ppc64/test_isa_2_07_part1.c @@ -406,7 +406,7 @@ static void test_mtvsrwz (void) static void test_mtfprwa (void) { - __asm__ __volatile__ ("mtfprwa %x0,%1" : "=ws" (vec_out) : "r" (r14)); + __asm__ __volatile__ ("mtfprwa %x0,%1" : "=d" (vec_out) : "r" (r14)); }; static test_t tests_move_ops_spe[] = { |