about summary refs log tree commit diff stats
path: root/arc/.traces/convert-braces-label-increments-offset2
blob: 99d4337ca749167f0bdaede4c99208b47ee90ff6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
c{0: 0 (((1 integer)) <- ((copy)) ((0 literal))) -- nil
c{0: 1 (((break))) -- ((open 1))
c{0: 2 foo -- ((open 1))
c{0: 3 (((2 integer)) <- ((copy)) ((0 literal))) -- ((close 3) (open 1))
c{0: 4 (((break))) -- ((open 4) (close 3) (open 1))
c{0: 5 (((3 integer)) <- ((copy)) ((0 literal))) -- ((open 4) (close 3) (open 1))
c{0: 6 (((4 integer)) <- ((copy)) ((0 literal))) -- ((close 6) (open 4) (close 3) (open 1))
c{1: 0 ✓ (((1 integer)) <- ((copy)) ((0 literal)))
c{1: 1 X (((break))) => (((jump)) ((1 offset)))
c{1: 3 ✓ (((2 integer)) <- ((copy)) ((0 literal)))
c{1: 4 X (((break))) => (((jump)) ((1 offset)))
c{1: 5 ✓ (((3 integer)) <- ((copy)) ((0 literal)))
c{1: 6 ✓ (((4 integer)) <- ((copy)) ((0 literal)))
iv class='alt'>
14
15
16
17
18
19
20
21
22
23
24
25
             
             


                                    

                   




                               
                   

                                       
 
       
                                             


                                                       
 
                     
       
          
# dwm version
VERSION = 0.9

# Customize below to fit your system

# paths
PREFIX = /usr/local
MANPREFIX = ${PREFIX}/share/man

X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib

# includes and libs
INCS = -I/usr/lib -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11

# flags
CFLAGS = -Os ${INCS} -DVERSION=\"${VERSION}\"
LDFLAGS = ${LIBS}
#CFLAGS = -g -Wall -O2 ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = -g ${LIBS}

# compiler and linker
CC = cc
LD = ${CC}