From 969c73660b81d3bfd80e2b7fab64652888961c1e Mon Sep 17 00:00:00 2001 From: FalseHonesty Date: Fri, 16 Apr 2021 14:42:13 -0400 Subject: [PATCH] Meta: Mark x86 debug register macros as false positives for CI --- Meta/CMake/all_the_debug_macros.cmake | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Meta/CMake/all_the_debug_macros.cmake b/Meta/CMake/all_the_debug_macros.cmake index ba76fbc8f7..93f239574a 100644 --- a/Meta/CMake/all_the_debug_macros.cmake +++ b/Meta/CMake/all_the_debug_macros.cmake @@ -187,5 +187,11 @@ set(LANGUAGE_SERVER_DEBUG ON) # set(LOG_DEBUG ON) # False positive: UHCI_USBCMD_SOFTWARE_DEBUG is a flag, but for a bitset, not a feature. # set(UHCI_USBCMD_SOFTWARE_DEBUG ON) +# False positive: DEBUG_CONTROL_REGISTER represents a specification constant. +# set(DEBUG_CONTROL_REGISTER ON) +# False positive: DEBUG_STATUS_REGISTER represents a specification constant. +# set(DEBUG_STATUS_REGISTER ON) +# False positive: DEFINE_DEBUG_REGISTER is used to define read/write methods for debug registers. +# set(DEFINE_DEBUG_REGISTER ON) # Clogs up build: The WrapperGenerator stuff is run at compile time. # set(WRAPPER_GENERATOR_DEBUG ON)