diff options
author | Devang Patel <dpatel@apple.com> | 2009-11-16 19:20:48 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-11-16 19:20:48 +0000 |
commit | 2ffd9935a1db2e55e3a46e3f4f1331e3ae88ce24 (patch) | |
tree | b2866b25b379deb3efad4aca09b4960bea964ec2 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | f2f534d12a6eaa2e5b51f3f6437c3486753c311c (diff) | |
download | bcm5719-llvm-2ffd9935a1db2e55e3a46e3f4f1331e3ae88ce24.tar.gz bcm5719-llvm-2ffd9935a1db2e55e3a46e3f4f1331e3ae88ce24.zip |
Add VISIBILITY_HIDDEN marker.
llvm-svn: 88939
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index c81ab73e819..5b33d7eb612 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -124,7 +124,7 @@ public: //===----------------------------------------------------------------------===// /// DbgVariable - This class is used to track local variable information. /// -class DbgVariable { +class VISIBILITY_HIDDEN DbgVariable { DIVariable Var; // Variable Descriptor. unsigned FrameIndex; // Variable frame index. DbgVariable *AbstractVar; // Abstract variable for this variable. @@ -146,7 +146,7 @@ public: /// DbgScope - This class is used to track scope information. /// class DbgConcreteScope; -class DbgScope { +class VISIBILITY_HIDDEN DbgScope { DbgScope *Parent; // Parent to this scope. DIDescriptor Desc; // Debug info descriptor for scope. WeakVH InlinedAtLocation; // Location at which scope is inlined. |