Merging r258416 and r258428:
[oota-llvm.git] / include / llvm / MC / MachineLocation.h
index 1c421821ce9dad8f545f607fafb3655b0bb424de..4b5cf435779336c009dc586ec496e5ea0f47ba59 100644 (file)
@@ -68,16 +68,12 @@ public:
     Register = R;
     Offset = O;
   }
-
-#ifndef NDEBUG
-  void dump();
-#endif
 };
 
 inline bool operator!=(const MachineLocation &LHS, const MachineLocation &RHS) {
   return !(LHS == RHS);
 }
 
-} // namespace llvm
+} // End llvm namespace
 
 #endif