tree-wide: Convert all usage of PIPE_(OS|ARCH|CC)_* to DETECT_(OS|ARCH|CC)_* by use grep

This should be the last commit, and should be take care that can only in comment block or
version
Exclude files:
src/util/detect_*.h

From:
PIPE_(OS|ARCH|CC)_([0-9A-Z_]+)
To:
DETECT_$1_$2

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19674>
This commit is contained in:
Yonggang Luo
2022-11-11 19:04:14 +08:00
committed by Marge Bot
parent 27fe4bd29f
commit 1accc0df64
9 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -250,7 +250,7 @@ debug_backtrace_capture(struct debug_stack_frame *backtrace,
#endif
#if DETECT_ARCH_X86
#if DETECT_CC_GCC && (PIPE_CC_GCC_VERSION > 404) || defined(__clang__)
#if DETECT_CC_GCC && (DETECT_CC_GCC_VERSION > 404) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wframe-address"
const void **frame_pointer = ((const void **)__builtin_frame_address(1));