index
:
Nim
this commit
devel
This repository contains the Nim compiler, Nim's stdlib, tools, and documentation. (mirror)
ahoang <ahoang@tilde.institute>
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
compiler
/
semfold.nim
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
Cosmetic compiler cleanup (#12718)
Clyybber
2019-11-28
1
-70
/
+70
*
conversions to unsigned numbers are not checked anymore; implements /… (#12...
Andreas Rumpf
2019-11-20
1
-4
/
+2
*
fix deprecation warnings related to Int128 (#12474)
Miran
2019-10-28
1
-47
/
+48
*
fixes #12170 (#12176)
Andreas Rumpf
2019-09-11
1
-2
/
+2
*
Small ast.nim cleanup (#12156)
Clyybber
2019-09-09
1
-14
/
+14
*
Merge branch 'devel' into uint-range-checks
Andreas Rumpf
2019-09-02
1
-7
/
+0
|
\
|
*
fix min/max for float numbers (#12068)
Arne Döring
2019-09-02
1
-7
/
+0
*
|
makes more tests green
Andreas Rumpf
2019-09-02
1
-2
/
+2
*
|
make test green
Araq
2019-09-02
1
-2
/
+3
|
/
*
Fix to int to biggest int (#12066)
Arne Döring
2019-08-27
1
-3
/
+0
*
fixes #12056 (#12063)
Andreas Rumpf
2019-08-27
1
-2
/
+5
*
int128 on firstOrd, lastOrd and lengthOrd (#11701)
Arne Döring
2019-08-07
1
-129
/
+130
*
[refactoring] remove unused imports in the compiler and in some stdlib modules
Araq
2019-07-18
1
-2
/
+2
*
styleCheck: make the compiler and large parts of the stdlib compatible with -...
Araq
2019-07-10
1
-4
/
+4
*
Offsetof fixes (#11690)
Arne Döring
2019-07-09
1
-7
/
+5
*
[refactoring] remove zeroExtend and friends from the compiler builtins. (#11531)
Arne Döring
2019-06-24
1
-6
/
+0
*
fix regression in semfold for old right shift (#11477)
Arne Döring
2019-06-12
1
-1
/
+16
*
right shift is now by default sign preserving (#11322)
Arne Döring
2019-05-29
1
-7
/
+4
*
less copy tree (#11249)
Arne Döring
2019-05-15
1
-19
/
+15
*
Make range checks in semConv (#7164)
Oscar Nihlgård
2019-05-10
1
-4
/
+1
*
Replace countup(x, y-1) with x ..< y
Clyybber
2019-05-07
1
-9
/
+9
*
low/high for float ranges (#11177)
Oscar Nihlgård
2019-05-06
1
-2
/
+8
*
Initial version of the hot-code reloading support f class="s2">"CC =
${
CC
}
"
.c.o
:
@echo
CC
$<
@
${
CC
}
-c
${
CFLAGS
}
$<
${OBJ}
:
wm
.
h
dwm
:
${
OBJ
}
@echo
LD
$@
@
${
CC
}
-o
$@
${
OBJ
}
${
LDFLAGS
}
clean
:
rm
-f
dwm
*.o
core
dist
:
clean
mkdir
-p
dwm-
${
VERSION
}
cp
-R
Makefile
README
LICENSE
config.mk
*.h
*.c
${
MAN
}
dwm-
${
VERSION
}
tar
-cf
dwm-
${
VERSION
}
.tar
dwm-
${
VERSION
}
gzip
dwm-
${
VERSION
}
.tar
rm
-rf
dwm-
${
VERSION
}
install
:
all
@mkdir
-p
${
DESTDIR
}${
PREFIX
}
/bin
@cp
-f
${
BIN
}
${
DESTDIR
}${
PREFIX
}
/bin
@echo
installed
executable
files
to
${
DESTDIR
}${
PREFIX
}
/bin
@mkdir
-p
${
DESTDIR
}${
MANPREFIX
}
/man1
@cp
-f
${
MAN1
}
${
DESTDIR
}${
MANPREFIX
}
/man1
@echo
installed
manual
pages
to
${
DESTDIR
}${
MANPREFIX
}
/man1
uninstall
:
for
i
in
${
BIN
}
;
do
\
rm
-f
${
DESTDIR
}${
PREFIX
}
/bin/
`
basename
$$
i
`
;
\
done
for
i
in
${
MAN1
}
;
do
\
rm
-f
${
DESTDIR
}${
MANPREFIX
}
/man1/
`
basename
$$
i
`
;
\
done
ref='/ahoang/Nim/commit/compiler/semfold.nim?h=devel&id=7107ec05de3a231799dbba66564fb2e22e94217a'>Narrowing casts are applied after every op if needed (#8918)
LemonBoy
2018-09-08
1
-28
/
+47
*
system.compileDate and compileTime are in UTC; fixes #7305; docgen supports S...
Andreas Rumpf
2018-09-03
1
-18
/
+3
*
Constant folding for integer casts (#8095)
LemonBoy
2018-08-31
1
-7
/
+25
*
Fix abs & unary sub in semfold (#8724)
Oscar Nihlgård
2018-08-22
1
-2
/
+6
*
Don't consider tyAnd/tyNot/tyOr/tyAnything as generic (#8700)
LemonBoy
2018-08-22
1
-17
/
+29
*
fixes #6255, add `system.ashr` arithmetic right shift (#8547)
andri lim
2018-08-07
1
-0
/
+8
*
Add sizeof for arrays of integral types (#8445)
cooldome
2018-07-30
1
-1
/
+1
*
More concept fixes
LemonBoy
2018-06-24
1
-1
/
+1
*
Fix constant folding for shl/not
LemonBoy
2018-06-19
1
-2
/
+9
*
remove more global variables in the Nim compiler
Andreas Rumpf
2018-05-27
1
-1
/
+1
*
platform.nim doesn't use globals anymore; prepare msgs.nim for not using globals
Andreas Rumpf
2018-05-18
1
-31
/
+31
*
options.nim: no global variables anymore
Andreas Rumpf
2018-05-13
1
-4
/
+4
[prev]
[next]