| Index: tools/binary_size/libsupersize/testdata/Console.golden
|
| diff --git a/tools/binary_size/libsupersize/testdata/Console.golden b/tools/binary_size/libsupersize/testdata/Console.golden
|
| index bad6bceb3904375ab3c553c5214b6bb7dfe5a63a..3409ae805f834e40b9712734cc254c1a0260e675 100644
|
| --- a/tools/binary_size/libsupersize/testdata/Console.golden
|
| +++ b/tools/binary_size/libsupersize/testdata/Console.golden
|
| @@ -11,8 +11,8 @@ by_path = text_syms.GroupBySourcePath(depth=2)
|
| Print(by_path.WhereBiggerThan(1024))
|
|
|
| # Show all non-vtable generated symbols
|
| -generated_syms = size_info.symbols.WhereIsGenerated()
|
| -Print(generated_syms.WhereNameMatches(r"vtable").Inverted())
|
| +generated_syms = size_info.symbols.WhereGeneratedByToolchain()
|
| +Print(generated_syms.WhereNameMatches(r"vtable").Inverted().Sorted())
|
|
|
| # Show all symbols that have "print" in their name or path, except
|
| # those within components/.
|
|
|