[docs] Add LICENSE.txt to the root of the mono-repo
[llvm-project.git] / clang / test / CodeGenObjC / attr-nomerge.m
blob7d053d0b1d69f1a579a9e62a570eb7738b8cb29a
1 // RUN: %clang_cc1 -emit-llvm -fobjc-exceptions -triple x86_64-unknown-linux -o - %s | FileCheck %s
3 // Test that the nomerge attribute is applied to function calls
4 // in @try, @catch and @finally
5 void opaque(void);
6 void opaque2(void);
7 void opaque3(void);
9 int main(int argc, const char * argv[]) {
10   __attribute__((nomerge)) @try {
11     opaque();
12   } @catch(...) {
13     opaque2();
14   } @finally {
15     opaque3();
16   }
18   return 0;
21 // CHECK: call void @opaque() #[[ATTR0:[0-9]+]]
22 // CHECK-DAG: call void @opaque2() #[[ATTR0]]
23 // CHECK-DAG: call void @opaque3() #[[ATTR0]]
24 // CHECK-DAG: attributes #[[ATTR0]] = {{{.*}}nomerge{{.*}}}