Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenObjC / catch-lexical-block.m
bloba7f5b3630a40c9d04c64caa2a5069282a1e28d46
1 // RUN: %clang_cc1 -debug-info-kind=limited -fobjc-exceptions -emit-llvm %s -o - | FileCheck %s
2 @interface Foo @end
3 void f0(void) {
4   @try {
5     @throw @"a";
6   } @catch(Foo *e) {
7   }
10 // We should have 3 lexical blocks here at the moment, including one
11 // for the catch block.
12 // CHECK: !DILexicalBlock(
13 // CHECK: !DILocalVariable(
14 // CHECK: !DILexicalBlock(
15 // CHECK: !DILexicalBlock(