Mercurial > hg > Members > tobaru > cbc > CbC_llvm
annotate test/CodeGen/ARM/ehabi-unwind.ll @ 128:c347d3398279 default tip
fix
author | mir3636 |
---|---|
date | Wed, 06 Dec 2017 14:37:17 +0900 |
parents | 54457678186b |
children |
rev | line source |
---|---|
0 | 1 ; Test that the EHABI unwind instruction generator does not encounter any |
2 ; unfamiliar instructions. | |
77 | 3 ; RUN: llc < %s -mtriple=thumbv7 -disable-fp-elim |
4 ; RUN: llc < %s -mtriple=thumbv7 | |
0 | 5 |
6 define void @_Z1fv() nounwind { | |
7 entry: | |
8 ret void | |
9 } | |
10 | |
11 define void @_Z1gv() nounwind { | |
12 entry: | |
13 call void @_Z1fv() | |
14 ret void | |
15 } |