Revert some unneeded parts of the change in r107886 for the
[oota-llvm.git] / include / llvm / MC / MCAsmInfo.h
index 5d796731143800cd5d3fdf38b3bbcc7a29136c87..8516de0188d65b76c3fcb52bf8cf4fad8afaef17 100644 (file)
@@ -217,11 +217,6 @@ namespace llvm {
     /// global as being a weak defined symbol.
     const char *WeakDefDirective;            // Defaults to NULL.
 
-    /// WeakDefAutoPrivateDirective - This directive, if non-null, is used to
-    /// declare a global as being a weak defined symbol that is automatically
-    /// made private by the static linker.
-    const char *WeakDefAutoPrivateDirective; // Defaults to NULL.
-
     /// LinkOnceDirective - This directive, if non-null is used to declare a
     /// global as being a weak defined symbol.  This is used on cygwin/mingw.
     const char *LinkOnceDirective;           // Defaults to NULL.
@@ -392,9 +387,6 @@ namespace llvm {
     bool hasNoDeadStrip() const { return HasNoDeadStrip; }
     const char *getWeakRefDirective() const { return WeakRefDirective; }
     const char *getWeakDefDirective() const { return WeakDefDirective; }
-    const char *getWeakDefAutoPrivateDirective() const {
-      return WeakDefAutoPrivateDirective;
-    }
     const char *getLinkOnceDirective() const { return LinkOnceDirective; }
     
     MCSymbolAttr getHiddenVisibilityAttr() const { return HiddenVisibilityAttr;}