summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.base/optim.stp
blob: 915a65dad77279d85545b77f3f24b12990c25f5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
global array
function func(i) {
        array[i++] = 0;
        return i;
}
function bart() { # rhbz# 300121
	if (1) var=2 else dummy=0
	return var
}
probe begin {
  printf ("i=%d\n", func(0))
  printf ("j=%d\n", bart())
  exit ()
}
ref='#n21'>21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
#!/usr/bin/env python
#
# Copyright (C) 2009 Rajeesh K Nambiar <rajeeshknambiar@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# at your option) any later version.
#       
# This program is distributed in the hope that it will be useful,