From 5bc942cc3cc970836d48d8ad276ef3b2b1120ffc Mon Sep 17 00:00:00 2001 From: Devang Patel Date: Wed, 10 Aug 2011 23:58:09 +0000 Subject: Stay within 80 columns. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137283 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/LexicalScopes.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'lib/CodeGen/LexicalScopes.cpp') diff --git a/lib/CodeGen/LexicalScopes.cpp b/lib/CodeGen/LexicalScopes.cpp index 2276004..6763284 100644 --- a/lib/CodeGen/LexicalScopes.cpp +++ b/lib/CodeGen/LexicalScopes.cpp @@ -221,11 +221,12 @@ void LexicalScopes::constructScopeNest(LexicalScope *Scope) { } } -/// assignInstructionRanges - Find ranges of instructions covered by each lexical -/// scope. +/// assignInstructionRanges - Find ranges of instructions covered by each +/// lexical scope. void LexicalScopes:: assignInstructionRanges(SmallVectorImpl &MIRanges, - DenseMap &MI2ScopeMap) { + DenseMap &MI2ScopeMap) +{ LexicalScope *PrevLexicalScope = NULL; for (SmallVectorImpl::const_iterator RI = MIRanges.begin(), @@ -248,7 +249,8 @@ assignInstructionRanges(SmallVectorImpl &MIRanges, /// have machine instructions that belong to lexical scope identified by /// DebugLoc. void LexicalScopes:: -getMachineBasicBlocks(DebugLoc DL, SmallPtrSet &MBBs) { +getMachineBasicBlocks(DebugLoc DL, + SmallPtrSet &MBBs) { MBBs.clear(); LexicalScope *Scope = getOrCreateLexicalScope(DL); if (!Scope) -- cgit v1.1