aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/SourceManager.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-02-04 05:21:58 +0000
committerChris Lattner <sabre@nondot.org>2009-02-04 05:21:58 +0000
commit9d79ebac47ffde6a1cb312f4c09b66b1b9a397fb (patch)
tree67af81bf176060a46d695911a371c8ad86a05a1f /include/clang/Basic/SourceManager.h
parent6c1fbe05efa93ebabae7150c915624efd8f3f715 (diff)
propagate linemarker flags down into the the line table, currently
ignoring include stack push/pop info though. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@63719 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/Basic/SourceManager.h')
-rw-r--r--include/clang/Basic/SourceManager.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/clang/Basic/SourceManager.h b/include/clang/Basic/SourceManager.h
index e0ed77f2dd..e24e623899 100644
--- a/include/clang/Basic/SourceManager.h
+++ b/include/clang/Basic/SourceManager.h
@@ -541,6 +541,9 @@ public:
/// specified by Loc. If FilenameID is -1, it is considered to be
/// unspecified.
void AddLineNote(SourceLocation Loc, unsigned LineNo, int FilenameID);
+ void AddLineNote(SourceLocation Loc, unsigned LineNo, int FilenameID,
+ bool IsFileEntry, bool IsFileExit,
+ bool IsSystemHeader, bool IsExternCHeader);
//===--------------------------------------------------------------------===//
// Other miscellaneous methods.