From c151fd533b2193aa769f7f59c3aa2a82ce50a9c2 Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Sun, 24 Nov 2024 15:25:52 +0000 Subject: [PATCH] Fix typo in test output (NFC) --- cputest/fctiw.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cputest/fctiw.cpp b/cputest/fctiw.cpp index 7e50651..92a2cfb 100644 --- a/cputest/fctiw.cpp +++ b/cputest/fctiw.cpp @@ -90,7 +90,7 @@ static void FctiwTestIndividual(u32 i, RoundingMode rounding_mode) u64 result = 0; asm("fctiw %0, %1" : "=f"(result) : "f"(input)); - DO_TEST(result == expected, "fctiwz 0x{:08x} ({}):\n" + DO_TEST(result == expected, "fctiw 0x{:08x} ({}):\n" " got 0x%{:16x} ({})\n" "expected 0x%{:16x} ({})", i, input, result, static_cast(result), expected, static_cast(expected));