forked from OSchip/llvm-project
[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:
parent
265ddc5757
commit
a233e7d7cb
|
@ -153,6 +153,7 @@ public:
|
|||
if (auto CN = dyn_cast<ConstantFPSDNode>(Opnd0))
|
||||
if (CN->isZero())
|
||||
return true;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue