diff options
| author | Daniel Sanders <daniel_l_sanders@apple.com> | 2018-01-29 23:47:41 +0000 |
|---|---|---|
| committer | Daniel Sanders <daniel_l_sanders@apple.com> | 2018-01-29 23:47:41 +0000 |
| commit | 760e113a037aca3d44ce356d1ce1c6f0effc14b6 (patch) | |
| tree | e00ab7c5e499cde4036fc0bda1454806affa42a6 | |
| parent | 72f6d598414f5dfc15bd8798b6e8ad85f4ce25dd (diff) | |
| download | bcm5719-llvm-760e113a037aca3d44ce356d1ce1c6f0effc14b6.tar.gz bcm5719-llvm-760e113a037aca3d44ce356d1ce1c6f0effc14b6.zip | |
[globalisel][legalizer] Fix a fallthrough case in the unittests debug printing
llvm-svn: 323711
| -rw-r--r-- | llvm/unittests/CodeGen/GlobalISel/LegalizerInfoTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/CodeGen/GlobalISel/LegalizerInfoTest.cpp b/llvm/unittests/CodeGen/GlobalISel/LegalizerInfoTest.cpp index a661d92658b..42371e63da9 100644 --- a/llvm/unittests/CodeGen/GlobalISel/LegalizerInfoTest.cpp +++ b/llvm/unittests/CodeGen/GlobalISel/LegalizerInfoTest.cpp @@ -28,7 +28,7 @@ operator<<(std::ostream &OS, const LegalizeAction Act) { case Libcall: OS << "Libcall"; break; case Custom: OS << "Custom"; break; case Unsupported: OS << "Unsupported"; break; - case NotFound: OS << "NotFound"; + case NotFound: OS << "NotFound"; break; case UseLegacyRules: OS << "UseLegacyRules"; break; } return OS; |

