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

clean up: remove redundant spaces

This commit is contained in:
shamofu 2019-06-30 01:05:57 +09:00 committed by Alexander Medvednikov
parent 7eab373922
commit 18082274ca
4 changed files with 19 additions and 22 deletions

View File

@ -41,4 +41,3 @@ script:
- export VROOT=$(pwd)
- make
- make test

View File

@ -35,5 +35,3 @@ It has only 8 files (soon to be 7):
9. `x64/` is the directory with all the machine code generation logic. It will be available in early July. Obviously this is the most complex part of the compiler. It defines a set of functions that translate assembly instructions to machine code, it builds complicated binaries from scratch byte by byte. It manually builds all headers, segments, sections, symtable, relocations, etc. Right now it only has basic support of the x64 platform/Mach-O format, and it can only generate `.o` files, which then have to be linked with `lld`.
The rest of the directories are vlib modules: `builtin/` (strings, arrays, maps), `time/`, `os/`, etc. Their documentation is pretty clear.