mirror of
https://github.com/RPCSX/llvm.git
synced 2025-02-04 03:17:51 +00:00
Fix a funky "declared with greater visibility than the type of its field"
warning from gcc by removing VISIBILITY_HIDDEN attributes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85873 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ba908640b3
commit
36d52bf4df
@ -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 VISIBILITY_HIDDEN DbgVariable {
|
class DbgVariable {
|
||||||
DIVariable Var; // Variable Descriptor.
|
DIVariable Var; // Variable Descriptor.
|
||||||
unsigned FrameIndex; // Variable frame index.
|
unsigned FrameIndex; // Variable frame index.
|
||||||
bool InlinedFnVar; // Variable for an inlined function.
|
bool InlinedFnVar; // Variable for an inlined function.
|
||||||
@ -142,7 +142,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 VISIBILITY_HIDDEN DbgScope {
|
class 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.
|
||||||
// FIXME use WeakVH for Desc.
|
// FIXME use WeakVH for Desc.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user