Added accessors to CompoundStmt to retrieve the source locations for the
left and right bracket.  This is useful for serialization.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43318 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/clang/AST/Stmt.h b/include/clang/AST/Stmt.h
index e5cc111..a73bd2e 100644
--- a/include/clang/AST/Stmt.h
+++ b/include/clang/AST/Stmt.h
@@ -189,7 +189,7 @@
                SourceLocation LB, SourceLocation RB)
     : Stmt(CompoundStmtClass), Body(StmtStart, StmtStart+NumStmts),
       LBracLoc(LB), RBracLoc(RB) {}
-  
+    
   bool body_empty() const { return Body.empty(); }
   
   typedef llvm::SmallVector<Stmt*, 16>::iterator body_iterator;
@@ -216,6 +216,10 @@
   virtual SourceRange getSourceRange() const { 
     return SourceRange(LBracLoc, RBracLoc); 
   }
+  
+  SourceLocation getLBracLoc() { return LBracLoc; }
+  SourceLocation getRBracLoc() { return RBracLoc; }
+  
   static bool classof(const Stmt *T) { 
     return T->getStmtClass() == CompoundStmtClass; 
   }