From 2df9bd30e4a0669297529fce79ffa5655de99395 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Wed, 4 May 2022 09:06:16 -0400 Subject: [PATCH] Do not rely on implicit int for this test This should address failing test bots: https://lab.llvm.org/buildbot/#/builders/68/builds/31828 --- lldb/test/API/commands/expression/rdar42038760/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/API/commands/expression/rdar42038760/main.c b/lldb/test/API/commands/expression/rdar42038760/main.c index 98a957f..2ce1e4e 100644 --- a/lldb/test/API/commands/expression/rdar42038760/main.c +++ b/lldb/test/API/commands/expression/rdar42038760/main.c @@ -4,7 +4,7 @@ typedef unsigned int uint32_t; struct S0 { signed f2; }; -static g_463 = 0x1561983AL; +static int g_463 = 0x1561983AL; void func_1(void) { struct S0 l_19; -- 2.7.4