mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-13 23:25:06 +00:00
Remove more seemingly unused code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187009 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -207,9 +207,7 @@ namespace llvm {
|
|||||||
protected:
|
protected:
|
||||||
friend class DIDescriptor;
|
friend class DIDescriptor;
|
||||||
void printInternal(raw_ostream &OS) const;
|
void printInternal(raw_ostream &OS) const;
|
||||||
// This ctor is used when the Tag has already been validated by a derived
|
|
||||||
// ctor.
|
|
||||||
DIType(const MDNode *N, bool, bool) : DIScope(N) {}
|
|
||||||
public:
|
public:
|
||||||
/// Verify - Verify that a type descriptor is well formed.
|
/// Verify - Verify that a type descriptor is well formed.
|
||||||
bool Verify() const;
|
bool Verify() const;
|
||||||
@@ -289,12 +287,10 @@ namespace llvm {
|
|||||||
class DIDerivedType : public DIType {
|
class DIDerivedType : public DIType {
|
||||||
friend class DIDescriptor;
|
friend class DIDescriptor;
|
||||||
void printInternal(raw_ostream &OS) const;
|
void printInternal(raw_ostream &OS) const;
|
||||||
protected:
|
|
||||||
explicit DIDerivedType(const MDNode *N, bool, bool)
|
|
||||||
: DIType(N, true, true) {}
|
|
||||||
public:
|
public:
|
||||||
explicit DIDerivedType(const MDNode *N = 0)
|
explicit DIDerivedType(const MDNode *N = 0)
|
||||||
: DIType(N, true, true) {}
|
: DIType(N) {}
|
||||||
|
|
||||||
DIType getTypeDerivedFrom() const { return getFieldAs<DIType>(9); }
|
DIType getTypeDerivedFrom() const { return getFieldAs<DIType>(9); }
|
||||||
|
|
||||||
@@ -331,7 +327,7 @@ namespace llvm {
|
|||||||
void printInternal(raw_ostream &OS) const;
|
void printInternal(raw_ostream &OS) const;
|
||||||
public:
|
public:
|
||||||
explicit DICompositeType(const MDNode *N = 0)
|
explicit DICompositeType(const MDNode *N = 0)
|
||||||
: DIDerivedType(N, true, true) {
|
: DIDerivedType(N) {
|
||||||
if (N && !isCompositeType())
|
if (N && !isCompositeType())
|
||||||
DbgNode = 0;
|
DbgNode = 0;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user