80-column.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186995 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Eric Christopher 2013-07-23 22:16:44 +00:00
parent 6e61e0ba08
commit 43e4854625

View File

@ -619,7 +619,11 @@ namespace llvm {
class DILexicalBlockFile : public DIScope {
public:
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 getColumnNumber() const { return getScope().getColumnNumber(); }
DILexicalBlock getScope() const { return getFieldAs<DILexicalBlock>(2); }