blob: 04e8571d6f4bbc3db5b9735798736b77acc9cea2 [file] [log] [blame]
Hal Finkel40d7f5c2016-09-01 09:42:39 +00001; 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