[Lldb-commits] [lldb] 2df9bd3 - Do not rely on implicit int for this test

Aaron Ballman via lldb-commits lldb-commits at lists.llvm.org
Wed May 4 06:08:11 PDT 2022


Author: Aaron Ballman
Date: 2022-05-04T09:07:57-04:00
New Revision: 2df9bd30e4a0669297529fce79ffa5655de99395

URL: https://github.com/llvm/llvm-project/commit/2df9bd30e4a0669297529fce79ffa5655de99395
DIFF: https://github.com/llvm/llvm-project/commit/2df9bd30e4a0669297529fce79ffa5655de99395.diff

LOG: Do not rely on implicit int for this test

This should address failing test bots:
https://lab.llvm.org/buildbot/#/builders/68/builds/31828

Added: 
    

Modified: 
    lldb/test/API/commands/expression/rdar42038760/main.c

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/expression/rdar42038760/main.c b/lldb/test/API/commands/expression/rdar42038760/main.c
index 98a957faf8bda..2ce1e4ee9aacc 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;


        


More information about the lldb-commits mailing list