From 01b885bfde15d940d88782145b4d7c5f9e9144ce Mon Sep 17 00:00:00 2001 From: dan sinclair Date: Mon, 3 Oct 2022 18:57:29 +0000 Subject: [PATCH] Fix comment in spirv-reader. The referenced test is no longer disabled, so remove the DISABLED marker. Change-Id: I46b192d593a9f1dd22ef73fd936b63ac3ed92104 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/104470 Commit-Queue: Dan Sinclair Reviewed-by: David Neto --- src/tint/reader/spirv/function.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tint/reader/spirv/function.cc b/src/tint/reader/spirv/function.cc index 7d4181d92d..d00dad0eb5 100644 --- a/src/tint/reader/spirv/function.cc +++ b/src/tint/reader/spirv/function.cc @@ -2679,7 +2679,7 @@ bool FunctionEmitter::EmitBasicBlock(const BlockInfo& block_info) { // - A kContinue can contain a kContinue // This is possible in Vulkan SPIR-V, but Tint disallows this by the rule // that a block can be continue target for at most one header block. See - // test DISABLED_BlockIsContinueForMoreThanOneHeader. If we generalize this, + // test BlockIsContinueForMoreThanOneHeader. If we generalize this, // then by a dominance argument, the inner loop continue target can only be // a single-block loop. // TODO(dneto): Handle this case.