summaryrefslogtreecommitdiff
path: root/c/README.txt
blob: 50450aa294843d5749ecbd2da031159d4e257baa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
C library for building dietcc passes

Example of using a pass:

    The examples/zero_init pass zero-initializes all local variables.

        $ which dietcc
        [make sure it's on your path!]
        $ cd examples/zero_init
        $ make -B
        $ ./default
        Foo return value: 0
        Foo return value: 32765
        Foo return value: 32765
        $ ./instrumented
        Foo return value: 0
        Foo return value: 0
        Foo return value: 0
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback