1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-25 04:02:41 +01:00

Fix a funky "declared with greater visibility than the type of its field"

warning from gcc by removing VISIBILITY_HIDDEN attributes.  

llvm-svn: 85873
This commit is contained in:
Jeffrey Yasskin 2009-11-03 06:29:36 +00:00
parent ed22395c61
commit bc6f9d7e70

View File

@ -124,7 +124,7 @@ public:
//===----------------------------------------------------------------------===//
/// DbgVariable - This class is used to track local variable information.
///
class VISIBILITY_HIDDEN DbgVariable {
class DbgVariable {
DIVariable Var; // Variable Descriptor.
unsigned FrameIndex; // Variable frame index.
bool InlinedFnVar; // Variable for an inlined function.
@ -142,7 +142,7 @@ public:
/// DbgScope - This class is used to track scope information.
///
class DbgConcreteScope;
class VISIBILITY_HIDDEN DbgScope {
class DbgScope {
DbgScope *Parent; // Parent to this scope.
DIDescriptor Desc; // Debug info descriptor for scope.
// FIXME use WeakVH for Desc.