diff options
author | Sunil Srivastava <sunil_srivastava@playstation.sony.com> | 2015-05-12 16:47:30 +0000 |
---|---|---|
committer | Sunil Srivastava <sunil_srivastava@playstation.sony.com> | 2015-05-12 16:47:30 +0000 |
commit | d79dfcbc37b1b0909c2340d4c7b0e00aa090597f (patch) | |
tree | 1c8b08533924fe5c94b096c7b83396943bd80198 /llvm/test/CodeGen/WinEH/cppeh-nested-rethrow.ll | |
parent | f57fb6ce1ae1a9f85ba70d8e251559ac2aa8bc75 (diff) | |
download | bcm5719-llvm-d79dfcbc37b1b0909c2340d4c7b0e00aa090597f.tar.gz bcm5719-llvm-d79dfcbc37b1b0909c2340d4c7b0e00aa090597f.zip |
Changed renaming of local symbols by inserting a dot vefore the numeric suffix.
One code change and several test changes to match that
details in http://reviews.llvm.org/D9481
llvm-svn: 237150
Diffstat (limited to 'llvm/test/CodeGen/WinEH/cppeh-nested-rethrow.ll')
-rw-r--r-- | llvm/test/CodeGen/WinEH/cppeh-nested-rethrow.ll | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/llvm/test/CodeGen/WinEH/cppeh-nested-rethrow.ll b/llvm/test/CodeGen/WinEH/cppeh-nested-rethrow.ll index 0ddcdfc75d0..1e8d63ec3fb 100644 --- a/llvm/test/CodeGen/WinEH/cppeh-nested-rethrow.ll +++ b/llvm/test/CodeGen/WinEH/cppeh-nested-rethrow.ll @@ -94,15 +94,15 @@ catch2: ; preds = %lpad1 %exn3 = load i8*, i8** %exn.slot call void @llvm.eh.begincatch(i8* %exn3, i8* null) #1 call void @llvm.eh.endcatch() #1 - br label %try.cont4 + br label %try.cont.4 ; This block should not be eliminated. -; CHECK: try.cont4: -try.cont4: ; preds = %catch2, %try.cont +; CHECK: try.cont.4: +try.cont.4: ; preds = %catch2, %try.cont ret void try.cont: ; No predecessors! - br label %try.cont4 + br label %try.cont.4 unreachable: ; preds = %catch, %entry unreachable @@ -170,9 +170,9 @@ catch2: ; preds = %lpad1 ; CHECK-NOT: call void @llvm.eh.endcatch() try.cont: ; preds = %catch2 call void @llvm.eh.endcatch() #1 - br label %try.cont4 + br label %try.cont.4 -try.cont4: ; preds = %try.cont +try.cont.4: ; preds = %try.cont ret void unreachable: ; preds = %catch, %entry @@ -186,7 +186,7 @@ unreachable: ; preds = %catch, %entry ; CHECK: } ; The outlined test1.catch1 handler should return to a valid block address. -; CHECK-LABEL: define internal i8* @"\01?test1@@YAXXZ.catch1"(i8*, i8*) +; CHECK-LABEL: define internal i8* @"\01?test1@@YAXXZ.catch.1"(i8*, i8*) ; WILL-CHECK: ret i8* inttoptr ( ; CHECK-NOT: ret i8* inttoptr (i32 1 to i8*) ; CHECK: } @@ -197,7 +197,7 @@ unreachable: ; preds = %catch, %entry ; CHECK: } ; The outlined test2.catch1 handler should return to a valid block address. -; CHECK-LABEL: define internal i8* @"\01?test2@@YAXXZ.catch2"(i8*, i8*) +; CHECK-LABEL: define internal i8* @"\01?test2@@YAXXZ.catch.2"(i8*, i8*) ; WILL-CHECK: ret i8* inttoptr ( ; CHECK-NOT: ret i8* inttoptr (i32 1 to i8*) ; CHECK: } |