1; RUN: llc < %s | FileCheck %s
2target datalayout = "E-m:e-i64:64-n32:64"
3target triple = "powerpc64-bgq-linux"
4
5define void @test1() #0 {
6entry:
7  ret void
8
9; CHECK-LABEL: @test1
10; CHECK: bl mcount
11; CHECK-NOT: mcount
12; CHECK: blr
13}
14
15attributes #0 = { "counting-function"="mcount" }
16
17