]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/ARM/dbg.ll
Vendor import of llvm RELEASE_360/rc3 tag r229040 (effectively, 3.6.0 RC3):
[FreeBSD/FreeBSD.git] / test / CodeGen / ARM / dbg.ll
1 ; RUN: llc -mtriple armv8-eabi -mcpu=cortex-a57 -o - %s | FileCheck %s
2 ; RUN: llc -mtriple thumbv8-eabi -mcpu=cortex-a57 -o - %s | FileCheck %s
3
4 define void @hint_dbg() {
5 entry:
6   call void @llvm.arm.dbg(i32 0)
7   ret void
8 }
9
10 declare void @llvm.arm.dbg(i32)
11
12 ; CHECK: dbg #0
13