[AArch64] Fix unannotated fall-through between switch labels

This is breaking buildbot with -Werror,-Wimplicit-fallthrough on.
eg:
http://lab.llvm.org:8011/builders/ppc64le-lld-multistage-test/builds/6881
This commit is contained in:
Jinsong Ji 2019-10-28 15:03:07 +00:00
parent 265ddc5757
commit a233e7d7cb
1 changed files with 1 additions and 0 deletions

View File

@ -153,6 +153,7 @@ public:
if (auto CN = dyn_cast<ConstantFPSDNode>(Opnd0))
if (CN->isZero())
return true;
break;
}
default:
break;