From 762dcd854a7103f29674132e5660c8bebf77d50d Mon Sep 17 00:00:00 2001 From: Carl Love Date: Thu, 10 Feb 2022 12:01:06 -0500 Subject: [PATCH] Powerpc: Fix typo in assembly code specification. The extra 0 results in an assebler error: Error: junk at end of line, first unrecognized character is `x' --- coregrind/m_machine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/m_machine.c b/coregrind/m_machine.c index 089acee649..7aa15133f5 100644 --- a/coregrind/m_machine.c +++ b/coregrind/m_machine.c @@ -1246,7 +1246,7 @@ Bool VG_(machine_get_hwcaps)( void ) if (VG_MINIMAL_SETJMP(env_unsup_insn)) { have_isa_3_0 = False; } else { - __asm__ __volatile__(".long 00x7f140434":::"r20"); /* cnttzw r20,r24 */ + __asm__ __volatile__(".long 0x7f140434":::"r20"); /* cnttzw r20,r24 */ } // ISA 3.1 not supported on 32-bit systems -- 2.47.2