mirror of
https://github.com/RPCS3/llvm.git
synced 2025-04-03 13:51:39 +00:00
80-column.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186995 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6e61e0ba08
commit
43e4854625
@ -619,7 +619,11 @@ namespace llvm {
|
|||||||
class DILexicalBlockFile : public DIScope {
|
class DILexicalBlockFile : public DIScope {
|
||||||
public:
|
public:
|
||||||
explicit DILexicalBlockFile(const MDNode *N = 0) : DIScope(N) {}
|
explicit DILexicalBlockFile(const MDNode *N = 0) : DIScope(N) {}
|
||||||
DIScope getContext() const { if (getScope().isSubprogram()) return getScope(); return getScope().getContext(); }
|
DIScope getContext() const {
|
||||||
|
if (getScope().isSubprogram())
|
||||||
|
return getScope();
|
||||||
|
return getScope().getContext();
|
||||||
|
}
|
||||||
unsigned getLineNumber() const { return getScope().getLineNumber(); }
|
unsigned getLineNumber() const { return getScope().getLineNumber(); }
|
||||||
unsigned getColumnNumber() const { return getScope().getColumnNumber(); }
|
unsigned getColumnNumber() const { return getScope().getColumnNumber(); }
|
||||||
DILexicalBlock getScope() const { return getFieldAs<DILexicalBlock>(2); }
|
DILexicalBlock getScope() const { return getFieldAs<DILexicalBlock>(2); }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user