Remove the successor probabilities normalization in tail duplication pass.
[oota-llvm.git] / lib / CodeGen / AntiDepBreaker.h
index 7985241c6635a7537d700b238167c0158647cd63..9f05200dcdf34acf9ae993a10882aa5bb99cd3d9 100644 (file)
@@ -27,7 +27,7 @@ namespace llvm {
 
 /// This class works in conjunction with the post-RA scheduler to rename
 /// registers to break register anti-dependencies (WAR hazards).
-class AntiDepBreaker {
+class LLVM_LIBRARY_VISIBILITY AntiDepBreaker {
 public:
   typedef std::vector<std::pair<MachineInstr *, MachineInstr *> > 
     DbgValueVector;
@@ -62,6 +62,6 @@ public:
   }
 };
 
-} // namespace llvm
+}
 
 #endif