[llvm-commits] [llvm] r88939 - /llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
Devang Patel
dpatel at apple.com
Mon Nov 16 11:20:48 PST 2009
Author: dpatel
Date: Mon Nov 16 13:20:48 2009
New Revision: 88939
URL: http://llvm.org/viewvc/llvm-project?rev=88939&view=rev
Log:
Add VISIBILITY_HIDDEN marker.
Modified:
llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp?rev=88939&r1=88938&r2=88939&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.cpp Mon Nov 16 13:20:48 2009
@@ -124,7 +124,7 @@
//===----------------------------------------------------------------------===//
/// 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 @@
/// 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.
More information about the llvm-commits
mailing list