From d8b0f99f870fb08af65a655f2c6cee3324386e7a Mon Sep 17 00:00:00 2001 From: Moritz Roth Date: Thu, 14 Aug 2014 16:20:50 +0000 Subject: [PATCH] Testing commit access. Remove a trailing whitespace. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@215653 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/AArch64/AArch64BranchRelaxation.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/AArch64/AArch64BranchRelaxation.cpp b/lib/Target/AArch64/AArch64BranchRelaxation.cpp index 670fe91d8f7..e2b636773b0 100644 --- a/lib/Target/AArch64/AArch64BranchRelaxation.cpp +++ b/lib/Target/AArch64/AArch64BranchRelaxation.cpp @@ -137,7 +137,7 @@ static bool BBHasFallthrough(MachineBasicBlock *MBB) { if (NextBB == MBB->getParent()->end()) return false; - for (MachineBasicBlock *S : MBB->successors()) + for (MachineBasicBlock *S : MBB->successors()) if (S == NextBB) return true;