summaryrefslogtreecommitdiffstats
path: root/test/CoverageMapping
diff options
context:
space:
mode:
authorJustin Bogner <mail@justinbogner.com>2015-07-23 23:34:26 +0000
committerJustin Bogner <mail@justinbogner.com>2015-07-23 23:34:26 +0000
commit2b65eeba66e150271f752056b57c1f73526cc2db (patch)
treed5c28854d17735307bc66d8e2890674627c7c87a /test/CoverageMapping
parentbd40a9cd8e286b925c3543cab68a107ea8194078 (diff)
InstrProf: Fix a typo in the test for r243066
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@243068 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CoverageMapping')
-rw-r--r--test/CoverageMapping/trymacro.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CoverageMapping/trymacro.cpp b/test/CoverageMapping/trymacro.cpp
index 6bd3ea219c..949186d961 100644
--- a/test/CoverageMapping/trymacro.cpp
+++ b/test/CoverageMapping/trymacro.cpp
@@ -14,7 +14,7 @@ catch(...) {} // CHECK: [[@LINE]]:12 -> [[@LINE]]:14 = #2
#define CATCH(x) catch (x)
// CHECK: Z3fn3v:
-void fn3() TRY { return; } // CHECK: [[@LINE]]:12 -> [[@LINE+1]]:14 = #1
+void fn3() TRY { return; } // CHECK: [[@LINE]]:15 -> [[@LINE+1]]:14 = #1
CATCH(...) {} // CHECK: [[@LINE]]:12 -> [[@LINE]]:14 = #2
int main() {