From 7e302d2f5f6c9b53d0c5017ac3325420b1c8e3d9 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Tue, 19 Oct 2004 05:50:34 +0000 Subject: [PATCH] If we're going to make the braces of functions line up for ease of readability and aesthetic reasons, might as well finish the job git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17140 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Function.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/llvm/Function.h b/include/llvm/Function.h index 63b533461a3..841912ab2d5 100644 --- a/include/llvm/Function.h +++ b/include/llvm/Function.h @@ -168,12 +168,12 @@ public: reverse_iterator rend () { return BasicBlocks.rend(); } const_reverse_iterator rend () const { return BasicBlocks.rend(); } - unsigned size() const { return BasicBlocks.size(); } + unsigned size() const { return BasicBlocks.size(); } bool empty() const { return BasicBlocks.empty(); } const BasicBlock &front() const { return BasicBlocks.front(); } BasicBlock &front() { return BasicBlocks.front(); } - const BasicBlock &back() const { return BasicBlocks.back(); } - BasicBlock &back() { return BasicBlocks.back(); } + const BasicBlock &back() const { return BasicBlocks.back(); } + BasicBlock &back() { return BasicBlocks.back(); } //===--------------------------------------------------------------------===// // Argument iterator forwarding functions @@ -188,12 +188,12 @@ public: reverse_aiterator arend () { return ArgumentList.rend(); } const_reverse_aiterator arend () const { return ArgumentList.rend(); } - unsigned asize() const { return ArgumentList.size(); } + unsigned asize() const { return ArgumentList.size(); } bool aempty() const { return ArgumentList.empty(); } const Argument &afront() const { return ArgumentList.front(); } Argument &afront() { return ArgumentList.front(); } - const Argument &aback() const { return ArgumentList.back(); } - Argument &aback() { return ArgumentList.back(); } + const Argument &aback() const { return ArgumentList.back(); } + Argument &aback() { return ArgumentList.back(); } virtual void print(std::ostream &OS) const { print(OS, 0); } void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;