[DAGCombiner] Add target hook function to decide folding (mul (add x, c1), c2)
[llvm-project.git] / llvm / test / Transforms / ObjCARC / intrinsic-use-isolated.ll
blob4ccad033aeb8926a03fc43319df5262ef6c0b65b
1 ; RUN: opt -objc-arc-contract -S < %s | FileCheck %s
3 ; This file makes sure that clang.arc.used is removed even if no other ARC
4 ; interesting calls are in the module.
6 declare void @llvm.objc.clang.arc.use(...) nounwind
8 ; Kill calls to @llvm.objc.clang.arc.use(...)
9 ; CHECK-LABEL: define void @test0(
10 ; CHECK-NOT: clang.arc.use
11 ; CHECK: }
12 define void @test0(i8* %a, i8* %b) {
13   call void (...) @llvm.objc.clang.arc.use(i8* %a, i8* %b) nounwind
14   ret void