Skip to content

Commit 0c11fee

Browse files
targosV8 LUCI CQ
authored andcommitted
[turboshaft][tsa] specify namespace for Block
It is ambiguous otherwise. There is `v8::internal::Block` and `v8::internal::compiler::turboshaft::Block`. This change is also consistent with the other types used in the macro. Change-Id: Ica7e5a09de955d8f38756fe26ab5f7e93e7e16e2 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5878257 Reviewed-by: Camillo Bruni <[email protected]> Commit-Queue: Michaël Zasso <[email protected]> Reviewed-by: Igor Sheludko <[email protected]> Cr-Commit-Position: refs/heads/main@{#96278}
1 parent af59de1 commit 0c11fee

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/interpreter/interpreter-generator-tsa.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ using namespace compiler::turboshaft; // NOLINT(build/namespaces)
3131
compiler::turboshaft::Graph& graph, Zone* zone) { \
3232
Name##AssemblerTS assembler(data, isolate, graph, zone); \
3333
assembler.EmitBytecodeHandlerProlog(); \
34-
Block* catch_block = assembler.NewBlock(); \
34+
compiler::turboshaft::Block* catch_block = assembler.NewBlock(); \
3535
Name##AssemblerTS::CatchScope catch_scope(assembler, catch_block); \
3636
assembler.Generate##Name##Impl(); \
3737
assembler.EmitEpilog(catch_block); \

0 commit comments

Comments
 (0)