mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-10 02:25:47 +00:00
zap white spaces.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62598 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -212,7 +212,6 @@ namespace llvm {
|
||||
std::string getDirectory() const { return getStringField(11); }
|
||||
};
|
||||
|
||||
|
||||
/// DICompositeType - This descriptor holds a type that can refer to multiple
|
||||
/// other types, like a function or struct.
|
||||
/// FIXME: Why is this a DIDerivedType??
|
||||
@@ -253,7 +252,6 @@ namespace llvm {
|
||||
std::string getName() const { return getStringField(3); }
|
||||
std::string getDisplayName() const { return getStringField(4); }
|
||||
std::string getLinkageName() const { return getStringField(5); }
|
||||
|
||||
DICompileUnit getCompileUnit() const{ return getFieldAs<DICompileUnit>(6); }
|
||||
unsigned getLineNumber() const { return getUnsignedField(7); }
|
||||
DIType getType() const { return getFieldAs<DIType>(8); }
|
||||
@@ -274,7 +272,6 @@ namespace llvm {
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
/// DISubprogram - This is a wrapper for a subprogram (e.g. a function).
|
||||
class DISubprogram : public DIGlobal {
|
||||
public:
|
||||
@@ -300,7 +297,6 @@ namespace llvm {
|
||||
bool Verify() const;
|
||||
};
|
||||
|
||||
|
||||
/// DIVariable - This is a wrapper for a variable (e.g. parameter, local,
|
||||
/// global etc).
|
||||
class DIVariable : public DIDescriptor {
|
||||
@@ -309,7 +305,6 @@ namespace llvm {
|
||||
|
||||
DIDescriptor getContext() const { return getDescriptorField(1); }
|
||||
std::string getName() const { return getStringField(2); }
|
||||
|
||||
DICompileUnit getCompileUnit() const{ return getFieldAs<DICompileUnit>(3); }
|
||||
unsigned getLineNumber() const { return getUnsignedField(4); }
|
||||
DIType getType() const { return getFieldAs<DIType>(5); }
|
||||
@@ -323,7 +318,6 @@ namespace llvm {
|
||||
bool Verify() const;
|
||||
};
|
||||
|
||||
|
||||
/// DIBlock - This is a wrapper for a block (e.g. a function, scope, etc).
|
||||
class DIBlock : public DIDescriptor {
|
||||
public:
|
||||
@@ -372,7 +366,6 @@ namespace llvm {
|
||||
/// implicitly uniques the values returned.
|
||||
DISubrange GetOrCreateSubrange(int64_t Lo, int64_t Hi);
|
||||
|
||||
|
||||
/// CreateCompileUnit - Create a new descriptor for the specified compile
|
||||
/// unit.
|
||||
DICompileUnit CreateCompileUnit(unsigned LangID,
|
||||
@@ -439,7 +432,6 @@ namespace llvm {
|
||||
const std::string *FileName = 0,
|
||||
const std::string *Directory = 0);
|
||||
|
||||
|
||||
/// CreateVariable - Create a new descriptor for the specified variable.
|
||||
DIVariable CreateVariable(unsigned Tag, DIDescriptor Context,
|
||||
const std::string &Name,
|
||||
|
Reference in New Issue
Block a user