summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/twentyfour.stp
blob: 40df6fae1347d38bf95316d425873f41ec049860 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#! stap -wgp4

# If the optimizer is working, this function will get elided,
# and thus will compile successfully.

function pure() %{  /* pure */
#error "should have been elided"
%}


probe begin
{
	pure ()
}