From d364307542d19ec5b0f4f5ee9adc5a3b7c8639a5 Mon Sep 17 00:00:00 2001 From: Aaron Ballman Date: Fri, 13 May 2022 10:23:23 -0400 Subject: [PATCH] Remove a stale FIXME comment; NFC --- clang/test/Sema/warn-strict-prototypes.m | 3 --- 1 file changed, 3 deletions(-) diff --git a/clang/test/Sema/warn-strict-prototypes.m b/clang/test/Sema/warn-strict-prototypes.m index 38e4ffaba767..ba0f9e6101b6 100644 --- a/clang/test/Sema/warn-strict-prototypes.m +++ b/clang/test/Sema/warn-strict-prototypes.m @@ -14,9 +14,6 @@ void foo() { // expected-warning {{a function declaration without a prototype is void (^block)() = // expected-warning {{a block declaration without a prototype is deprecated}} ^void(int arg) { // no warning }; - // FIXME: this should say "a block declaration" instead, but block literal - // expressions do not track their full declarator information, so we don't - // know it's a block when diagnosing. void (^block2)(void) = ^void() { }; void (^block3)(void) = ^ { // no warning