AsmPrinter: Create a unified .debug_loc stream
[oota-llvm.git] / lib / CodeGen / ErlangGC.cpp
index ec2c2e8daf23715e9cb038aa1a18229bb51ec838..024946d1436245c02b3168bca766b2eaae67060b 100644 (file)
@@ -15,8 +15,8 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/CodeGen/GCs.h"
+#include "llvm/CodeGen/GCStrategy.h"
 #include "llvm/CodeGen/MachineInstrBuilder.h"
-#include "llvm/IR/GCStrategy.h"
 #include "llvm/MC/MCContext.h"
 #include "llvm/MC/MCSymbol.h"
 #include "llvm/Target/TargetInstrInfo.h"
@@ -27,17 +27,16 @@ using namespace llvm;
 
 namespace {
 
-  class ErlangGC : public GCStrategy {
-  public:
-    ErlangGC();
-  };
-
+class ErlangGC : public GCStrategy {
+public:
+  ErlangGC();
+};
 }
 
-static GCRegistry::Add<ErlangGC>
-X("erlang", "erlang-compatible garbage collector");
+static GCRegistry::Add<ErlangGC> X("erlang",
+                                   "erlang-compatible garbage collector");
 
-void llvm::linkErlangGC() { }
+void llvm::linkErlangGC() {}
 
 ErlangGC::ErlangGC() {
   InitRoots = false;