diff options
Diffstat (limited to 'lib/Target/PowerPC/PPCBranchSelector.cpp')
-rw-r--r-- | lib/Target/PowerPC/PPCBranchSelector.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCBranchSelector.cpp b/lib/Target/PowerPC/PPCBranchSelector.cpp index 7ace3c10d4..fdf1dd338a 100644 --- a/lib/Target/PowerPC/PPCBranchSelector.cpp +++ b/lib/Target/PowerPC/PPCBranchSelector.cpp @@ -43,8 +43,9 @@ namespace { case PPC::IMPLICIT_DEF: // no asm emitted return 0; default: - return 4; // PowerPC instructions are all 4 bytes + break; } + return 4; // PowerPC instructions are all 4 bytes } virtual bool runOnMachineFunction(MachineFunction &Fn) { |