From: Justin Bogner Date: Thu, 23 Jul 2015 23:34:26 +0000 (+0000) Subject: InstrProf: Fix a typo in the test for r243066 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2b65eeba66e150271f752056b57c1f73526cc2db;p=clang 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 --- 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() {