InstrProf: Fix a typo in the test for r243066

llvm-svn: 243068
This commit is contained in:
Justin Bogner 2015-07-23 23:34:26 +00:00
parent f9d9db4975
commit 3cfb62da14
1 changed files with 1 additions and 1 deletions

View File

@ -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() {