From: Blue Gaston Date: Wed, 4 Jan 2023 16:49:34 +0000 (-0700) Subject: Fix to D140567 X-Git-Tag: upstream/17.0.6~22153 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b857c568c1938a65fc796abcac80e7482048816;p=platform%2Fupstream%2Fllvm.git Fix to D140567 --- diff --git a/compiler-rt/lib/sanitizer_common/tests/sanitizer_procmaps_test.cpp b/compiler-rt/lib/sanitizer_common/tests/sanitizer_procmaps_test.cpp index d4cc690..36c393f 100644 --- a/compiler-rt/lib/sanitizer_common/tests/sanitizer_procmaps_test.cpp +++ b/compiler-rt/lib/sanitizer_common/tests/sanitizer_procmaps_test.cpp @@ -69,7 +69,7 @@ TEST(MemoryMapping, LoadedModuleArchAndUUID) { if (SANITIZER_WORDSIZE == 32) { EXPECT_EQ(arch, kModuleArchI386); } else if (SANITIZER_WORDSIZE == 64) { - EXPECT_TRUE(arch == kModuleArchX86_64 || arch == kModuleArchX86_64H || kModuleArchARM64); + EXPECT_TRUE(arch == kModuleArchX86_64 || arch == kModuleArchX86_64H || arch == kModuleArchARM64); } const u8 *uuid = modules[i].uuid(); u8 null_uuid[kModuleUUIDSize] = {0};