From b7697a6dd27b747dd186022d67ff43d45125d365 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Wed, 28 Jul 2004 19:13:07 +0000 Subject: Remove an extra 8 byte distance penalty. Patch by Nate Begeman. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@15305 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/PowerPC/PPCBranchSelector.cpp | 4 ---- 1 file changed, 4 deletions(-) (limited to 'lib/Target/PowerPC/PPCBranchSelector.cpp') diff --git a/lib/Target/PowerPC/PPCBranchSelector.cpp b/lib/Target/PowerPC/PPCBranchSelector.cpp index dbc4b7de48..e5a3a33fbe 100644 --- a/lib/Target/PowerPC/PPCBranchSelector.cpp +++ b/lib/Target/PowerPC/PPCBranchSelector.cpp @@ -113,10 +113,6 @@ namespace { BuildMI(*MBB, MBBI, Inverted, 2).addReg(PPC32::CR0).addSImm(8); BuildMI(*MBB, MBBI, PPC32::B, 1).addMBB(trueMBB); BuildMI(*MBB, MBBI, PPC32::B, 1).addMBB(falseMBB); - - // Let the byte tracker know that we just added 8 bytes worth of - // branches in addition to the original branch instruction. - ByteCount += 8; } MBB->erase(MI); } -- cgit v1.2.3