Author: Sirraide Date: 2025-09-16T02:02:01+02:00 New Revision: 9b95e10d5ea6b61e0d9af0a800d63566ae32a2d0
URL: https://github.com/llvm/llvm-project/commit/9b95e10d5ea6b61e0d9af0a800d63566ae32a2d0 DIFF: https://github.com/llvm/llvm-project/commit/9b95e10d5ea6b61e0d9af0a800d63566ae32a2d0.diff LOG: [LLDB] [Tests] Downgrade -Wincompatible-pointer-types to a warning in some tests (#158756) These no longer compile because the warning now defaults to an error after #157364, so downgrade the error to a warning for now; I’m not familiar enough with either LLDB or MacOS to fix these warnings properly (assuming they’re unintended). Added: Modified: lldb/test/API/functionalities/data-formatter/data-formatter-objc/Makefile lldb/test/API/macosx/ignore_exceptions/Makefile Removed: ################################################################################ diff --git a/lldb/test/API/functionalities/data-formatter/data-formatter-objc/Makefile b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/Makefile index 8b322ff320bb0..5ef65e0c08451 100644 --- a/lldb/test/API/functionalities/data-formatter/data-formatter-objc/Makefile +++ b/lldb/test/API/functionalities/data-formatter/data-formatter-objc/Makefile @@ -1,6 +1,6 @@ OBJC_SOURCES := main.m -CFLAGS_EXTRAS := -w +CFLAGS_EXTRAS := -w -Wno-error=incompatible-pointer-types diff --git a/lldb/test/API/macosx/ignore_exceptions/Makefile b/lldb/test/API/macosx/ignore_exceptions/Makefile index 695335e068c0c..14ed92da5296b 100644 --- a/lldb/test/API/macosx/ignore_exceptions/Makefile +++ b/lldb/test/API/macosx/ignore_exceptions/Makefile @@ -1,4 +1,4 @@ C_SOURCES := main.c -CFLAGS_EXTRAS := -std=c99 +CFLAGS_EXTRAS := -std=c99 -Wno-error=incompatible-pointer-types include Makefile.rules _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
