First working version of LLVM in Windows

This commit is contained in:
Syrus Akbary
2019-07-30 14:47:53 -07:00
parent 714bf6ab6b
commit 12f8f3d085
12 changed files with 227 additions and 111 deletions

View File

@ -0,0 +1,3 @@
pub fn round_up_to_page_size(size: usize) -> usize {
(size + (4096 - 1)) & !(4096 - 1)
}