Debug Info Testing: use null instead of an empty string in context field.
[oota-llvm.git] / test / CodeGen / ARM / ehabi-no-landingpad.ll
1 ; RUN: llc < %s -mtriple=armv7-unknown-linux-gnueabi \
2 ; RUN:   -arm-enable-ehabi -arm-enable-ehabi-descriptors | FileCheck %s
3
4 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:64:128-a0:0:64-n32-S64"
5 target triple = "armv7-unknown-linux-gnueabi"
6
7 define void @_Z4testv() {
8 ; CHECK: _Z4testv
9 ; CHECK: .fnstart
10 ; CHECK: .size
11 ; CHECK-NOT: .handlerdata
12 ; CHECK: .fnend
13 entry:
14   call void @_Z15throw_exceptionv()
15   ret void
16 }
17
18 declare void @_Z15throw_exceptionv()