Skip to content

Commit

Permalink
[AArch64] Fix unannotated fall-through between switch labels
Browse files Browse the repository at this point in the history
This is breaking buildbot with -Werror,-Wimplicit-fallthrough on.
eg:
http://lab.llvm.org:8011/builders/ppc64le-lld-multistage-test/builds/6881
  • Loading branch information
Jinsong Ji committed Oct 28, 2019
1 parent 265ddc5 commit a233e7d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions llvm/lib/Target/AArch64/AArch64ISelDAGToDAG.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ class AArch64DAGToDAGISel : public SelectionDAGISel {
if (auto CN = dyn_cast<ConstantFPSDNode>(Opnd0))
if (CN->isZero())
return true;
break;
}
default:
break;
Expand Down

0 comments on commit a233e7d

Please sign in to comment.