diff options
author | 2024-03-08 15:48:44 +0000 | |
---|---|---|
committer | 2024-03-12 15:52:28 +0000 | |
commit | 5937cdeeef4639e523ae3cfde3bfce3ccb252921 (patch) | |
tree | 8c87fc2983ee01ae68fa79be1afb6cd3886d3053 /compiler/optimizing/graph_visualizer.cc | |
parent | 68f3ec8001c46f00f82043d7100c04dee4449c48 (diff) |
Remove default cases when all cases are defined
Bug: 328756212
Test: art/test/testrunner/testrunner.py --host --64 --optimizing -b
Test: m test-art-host-gtest
Change-Id: I9584e1b93e49265b84a9e45c8b283ebaf8ad3eb2
Diffstat (limited to 'compiler/optimizing/graph_visualizer.cc')
-rw-r--r-- | compiler/optimizing/graph_visualizer.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/compiler/optimizing/graph_visualizer.cc b/compiler/optimizing/graph_visualizer.cc index 6696c1ef17..1e4f71f9a2 100644 --- a/compiler/optimizing/graph_visualizer.cc +++ b/compiler/optimizing/graph_visualizer.cc @@ -109,9 +109,6 @@ std::ostream& operator<<(std::ostream& os, const StringList& list) { switch (list.format_) { case StringList::kArrayBrackets: return os << "[" << list.sstream_.str() << "]"; case StringList::kSetBrackets: return os << "{" << list.sstream_.str() << "}"; - default: - LOG(FATAL) << "Invalid StringList format"; - UNREACHABLE(); } } |