mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-29 13:24:25 +00:00
Add VISIBILITY_HIDDEN marker.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88939 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -124,7 +124,7 @@ public:
|
|||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
/// DbgVariable - This class is used to track local variable information.
|
/// DbgVariable - This class is used to track local variable information.
|
||||||
///
|
///
|
||||||
class DbgVariable {
|
class VISIBILITY_HIDDEN DbgVariable {
|
||||||
DIVariable Var; // Variable Descriptor.
|
DIVariable Var; // Variable Descriptor.
|
||||||
unsigned FrameIndex; // Variable frame index.
|
unsigned FrameIndex; // Variable frame index.
|
||||||
DbgVariable *AbstractVar; // Abstract variable for this variable.
|
DbgVariable *AbstractVar; // Abstract variable for this variable.
|
||||||
@ -146,7 +146,7 @@ public:
|
|||||||
/// DbgScope - This class is used to track scope information.
|
/// DbgScope - This class is used to track scope information.
|
||||||
///
|
///
|
||||||
class DbgConcreteScope;
|
class DbgConcreteScope;
|
||||||
class DbgScope {
|
class VISIBILITY_HIDDEN DbgScope {
|
||||||
DbgScope *Parent; // Parent to this scope.
|
DbgScope *Parent; // Parent to this scope.
|
||||||
DIDescriptor Desc; // Debug info descriptor for scope.
|
DIDescriptor Desc; // Debug info descriptor for scope.
|
||||||
WeakVH InlinedAtLocation; // Location at which scope is inlined.
|
WeakVH InlinedAtLocation; // Location at which scope is inlined.
|
||||||
|
Reference in New Issue
Block a user