git-clang-format an area I am about to change.
authorRafael Espindola <rafael.espindola@gmail.com>
Thu, 5 Nov 2015 23:54:18 +0000 (23:54 +0000)
committerRafael Espindola <rafael.espindola@gmail.com>
Thu, 5 Nov 2015 23:54:18 +0000 (23:54 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@252241 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCDwarf.cpp

index 814b58728050be3e964881249ce7169ebbe2248a..379df6534da8377b85eb1ba660e9a844644fcafb 100644 (file)
@@ -995,38 +995,35 @@ static void EmitPersonality(MCStreamer &streamer, const MCSymbol &symbol,
 }
 
 namespace {
-  class FrameEmitterImpl {
-    int CFAOffset;
-    int InitialCFAOffset;
-    bool IsEH;
-    const MCSymbol *SectionStart;
-  public:
-    FrameEmitterImpl(bool isEH)
-        : CFAOffset(0), InitialCFAOffset(0), IsEH(isEH), SectionStart(nullptr) {
-    }
-
-    void setSectionStart(const MCSymbol *Label) { SectionStart = Label; }
-
-    /// Emit the unwind information in a compact way.
-    void EmitCompactUnwind(MCObjectStreamer &streamer,
-                           const MCDwarfFrameInfo &frame);
-
-    const MCSymbol &EmitCIE(MCObjectStreamer &streamer,
-                            const MCSymbol *personality,
-                            unsigned personalityEncoding,
-                            const MCSymbol *lsda,
-                            bool IsSignalFrame,
-                            unsigned lsdaEncoding,
-                            bool IsSimple);
-    MCSymbol *EmitFDE(MCObjectStreamer &streamer,
-                      const MCSymbol &cieStart,
-                      const MCDwarfFrameInfo &frame);
-    void EmitCFIInstructions(MCObjectStreamer &streamer,
-                             ArrayRef<MCCFIInstruction> Instrs,
-                             MCSymbol *BaseLabel);
-    void EmitCFIInstruction(MCObjectStreamer &Streamer,
-                            const MCCFIInstruction &Instr);
-  };
+class FrameEmitterImpl {
+  int CFAOffset;
+  int InitialCFAOffset;
+  bool IsEH;
+  const MCSymbol *SectionStart;
+
+public:
+  FrameEmitterImpl(bool isEH)
+      : CFAOffset(0), InitialCFAOffset(0), IsEH(isEH), SectionStart(nullptr) {}
+
+  void setSectionStart(const MCSymbol *Label) { SectionStart = Label; }
+
+  /// Emit the unwind information in a compact way.
+  void EmitCompactUnwind(MCObjectStreamer &streamer,
+                         const MCDwarfFrameInfo &frame);
+
+  const MCSymbol &EmitCIE(MCObjectStreamer &streamer,
+                          const MCSymbol *personality,
+                          unsigned personalityEncoding, const MCSymbol *lsda,
+                          bool IsSignalFrame, unsigned lsdaEncoding,
+                          bool IsSimple);
+  MCSymbol *EmitFDE(MCObjectStreamer &streamer, const MCSymbol &cieStart,
+                    const MCDwarfFrameInfo &frame);
+  void EmitCFIInstructions(MCObjectStreamer &streamer,
+                           ArrayRef<MCCFIInstruction> Instrs,
+                           MCSymbol *BaseLabel);
+  void EmitCFIInstruction(MCObjectStreamer &Streamer,
+                          const MCCFIInstruction &Instr);
+};
 
 } // end anonymous namespace