1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

Revert "x64, v2 backends"

This reverts commit 81ae54d9bd.
This commit is contained in:
Alexander Medvednikov
2019-12-31 13:23:12 +01:00
parent 81ae54d9bd
commit da5fb5dcbd
21 changed files with 74 additions and 901 deletions

View File

@@ -16,7 +16,7 @@ pub:
}
// Private function, used by V (`nums := []int`)
fn new_array(mylen int, cap int, elm_size int) array {
fn new_array(mylen, cap, elm_size int) array {
cap_ := if cap == 0 { 1 } else { cap }
arr := array{
len: mylen