https://github.com/melver updated https://github.com/llvm/llvm-project/pull/172030
>From d4f149dbb21fd7f5e706560b1aa3b8f0b9fa5ae9 Mon Sep 17 00:00:00 2001 From: Marco Elver <[email protected]> Date: Fri, 12 Dec 2025 17:18:15 +0100 Subject: [PATCH] tweak test Created using spr 1.3.8-beta.1 --- clang/test/CodeGen/builtin-allow-sanitize-check-lower.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/test/CodeGen/builtin-allow-sanitize-check-lower.c b/clang/test/CodeGen/builtin-allow-sanitize-check-lower.c index 05a0295799f55..5e52f77f55573 100644 --- a/clang/test/CodeGen/builtin-allow-sanitize-check-lower.c +++ b/clang/test/CodeGen/builtin-allow-sanitize-check-lower.c @@ -9,9 +9,9 @@ _Bool check() { return __builtin_allow_sanitize_check("address"); } -// CHECK-LABEL: @test +// CHECK-LABEL: @test_sanitize // CHECK: ret i1 true -_Bool test() { +_Bool test_sanitize() { return check(); } _______________________________________________ llvm-branch-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
