test commit, added a comment to MCSectionCOFF::PrintSwitchToSection function
authorNathan Jeffords <blunted2night@gmail.com>
Sun, 9 May 2010 05:49:00 +0000 (05:49 +0000)
committerNathan Jeffords <blunted2night@gmail.com>
Sun, 9 May 2010 05:49:00 +0000 (05:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103372 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCSectionCOFF.cpp

index d15146654ebf8c4a2afcc688aa5c29dda3c736c9..103a80f1e37d3c97b464ae9d26183c7cf5a5ffc3 100644 (file)
@@ -31,6 +31,7 @@ bool MCSectionCOFF::ShouldOmitSectionDirective(StringRef Name,
 void MCSectionCOFF::PrintSwitchToSection(const MCAsmInfo &MAI,
                                          raw_ostream &OS) const {
   
+  // standard sections don't require the '.section'
   if (ShouldOmitSectionDirective(SectionName, MAI)) {
     OS << '\t' << getSectionName() << '\n';
     return;