summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCSection.h
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-07-01 01:00:22 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-07-01 01:00:22 +0000
commitdd2ad8432f104282ff43c94457f474ea0a264175 (patch)
tree388b22a2ff8bb2f5e642a99972a77a407f619329 /include/llvm/MC/MCSection.h
parente72a5c5e2e3d09ef02bae00620d499d3e59c8a7f (diff)
downloadllvm-dd2ad8432f104282ff43c94457f474ea0a264175.tar.gz
llvm-dd2ad8432f104282ff43c94457f474ea0a264175.tar.bz2
llvm-dd2ad8432f104282ff43c94457f474ea0a264175.tar.xz
Trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107360 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/MC/MCSection.h')
-rw-r--r--include/llvm/MC/MCSection.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/llvm/MC/MCSection.h b/include/llvm/MC/MCSection.h
index 808767c8da..5c997357c9 100644
--- a/include/llvm/MC/MCSection.h
+++ b/include/llvm/MC/MCSection.h
@@ -23,7 +23,7 @@ namespace llvm {
class MCContext;
class MCAsmInfo;
class raw_ostream;
-
+
/// MCSection - Instances of this class represent a uniqued identifier for a
/// section in the current translation unit. The MCContext class uniques and
/// creates these.
@@ -49,7 +49,7 @@ namespace llvm {
SectionKind getKind() const { return Kind; }
SectionVariant getVariant() const { return Variant; }
-
+
virtual void PrintSwitchToSection(const MCAsmInfo &MAI,
raw_ostream &OS) const = 0;
@@ -63,7 +63,7 @@ namespace llvm {
static bool classof(const MCSection *) { return true; }
};
-
+
} // end namespace llvm
#endif