blob: 90182574e0bbcfe730b246be65a1f0603e47b628 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as | opt -lowerinvoke -enable-correct-eh-support -disable-output
2
3void %_ZNKSt11__use_cacheISt16__numpunct_cacheIcEEclERKSt6locale() {
4entry:
5 br bool false, label %then, label %UnifiedReturnBlock
6
7then: ; preds = %entry
8 invoke void %_Znwj( )
9 to label %UnifiedReturnBlock unwind label %UnifiedReturnBlock
10
11UnifiedReturnBlock: ; preds = %entry, %then, %then
12 %UnifiedRetVal = phi int* [ null, %entry ], [ null, %then ], [ null, %then ]
13 ret void
14}
15
16declare void %_Znwj()