Remove dead code.

llvm-svn: 187017
This commit is contained in:
Eric Christopher 2013-07-24 01:38:05 +00:00
parent 3f93d3d61e
commit 6fef53dde3
2 changed files with 0 additions and 6 deletions

View File

@ -129,7 +129,6 @@ namespace llvm {
bool isSubrange() const; bool isSubrange() const;
bool isEnumerator() const; bool isEnumerator() const;
bool isType() const; bool isType() const;
bool isGlobal() const;
bool isUnspecifiedParameter() const; bool isUnspecifiedParameter() const;
bool isTemplateTypeParameter() const; bool isTemplateTypeParameter() const;
bool isTemplateValueParameter() const; bool isTemplateValueParameter() const;

View File

@ -231,11 +231,6 @@ bool DIDescriptor::isGlobalVariable() const {
getTag() == dwarf::DW_TAG_constant); getTag() == dwarf::DW_TAG_constant);
} }
/// isGlobal - Return true if the specified tag is legal for DIGlobal.
bool DIDescriptor::isGlobal() const {
return isGlobalVariable();
}
/// isUnspecifiedParmeter - Return true if the specified tag is /// isUnspecifiedParmeter - Return true if the specified tag is
/// DW_TAG_unspecified_parameters. /// DW_TAG_unspecified_parameters.
bool DIDescriptor::isUnspecifiedParameter() const { bool DIDescriptor::isUnspecifiedParameter() const {