Revert "[InstCombine] Support gep nuw in icmp folds" (#118698)
[llvm-project.git] / llvm / test / Transforms / ObjCARC / pr12270.ll
blobdddcdf0f212bebe3465961730e14afacc06a001f
1 ; RUN: opt -disable-output -passes=objc-arc-contract < %s
2 ; test that we don't crash on unreachable code
3 %2 = type opaque
5 define void @_i_Test__foo(ptr %x) {
6 entry:
7   unreachable
9 return:                                           ; No predecessors!
10   %foo = call ptr @llvm.objc.autoreleaseReturnValue(ptr %x) nounwind
11   call void @callee()
12   call void @use_pointer(ptr %foo)
13   call void @llvm.objc.release(ptr %foo) nounwind
14   ret void
17 declare ptr @llvm.objc.autoreleaseReturnValue(ptr)
18 declare void @llvm.objc.release(ptr)
19 declare void @callee()
20 declare void @use_pointer(ptr)