mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
9 lines
302 B
Batchfile
9 lines
302 B
Batchfile
@echo off
|
|
|
|
|
|
rem del "..\examples\test.bc"
|
|
call ..\bin\odin.exe ..\examples/test.odin && lli ..\examples/test.ll
|
|
call opt -mem2reg ..\examples/test.ll > ..\examples/test.bc
|
|
call llvm-dis ..\examples/test.bc -o ..\examples/test.ll
|
|
call clang ..\examples/test.c -O0 -S -emit-llvm -o ..\examples/test-c.ll
|