about summary refs log tree commit diff
path: root/llvm-c/BitReader.h (unfollow)
Commit message (Expand)AuthorFilesLines
2025-05-28Feature: Support custom types in llvm_get_typeBaitinq1-2/+6
2025-05-28Feature: Add sizeof builtin functionBaitinq4-6/+60
2025-05-27Feature: Finish adding struct support :^)Baitinq4-73/+149
2025-05-25Feature: Start adding structs supportBaitinq6-17/+218
2025-05-24Examples: Fix example 21Baitinq1-2/+2
2025-05-24Codegen: Get function return type correctlyBaitinq1-15/+20
2025-05-24Codegen: Fix bug with functions inside functionsBaitinq1-4/+5
2025-05-24Codegen: Fix bug with typecheck of return of function paramsBaitinq6-52/+64
2025-05-23Codegen: Typecheck binary expressionsBaitinq4-24/+33
2025-05-23Parser: Fix cast statement parsingBaitinq2-11/+12
2025-05-22Codegen: Typecheck function return types and change null typeBaitinq2-17/+24
2025-05-20Feature: Add more type checksBaitinq3-36/+40
2025-05-20Feature: Add support for casting typesBaitinq4-5/+50
2025-05-19Codegen: Implement proper type comparisonsBaitinq2-5/+58
2025-05-19Feature: Add support for !=Baitinq4-5/+17
2025-05-18Bootstra: Tokenizer: Allocate more memory for tokensBaitinq1-1/+1
2025-05-18Misc: Use println instead of printfBaitinq22-59/+62
2025-05-18Codegen: Fix bug with varargs functionsBaitinq1-11/+16
2025-05-18Codegen: Don't allow assigning variables of different typeBaitinq1-11/+8
2025-05-18Codegen: Don't allow changing types on variable assignmentBaitinq2-6/+6
2025-05-18Feature: Add support for continue statementBaitinq5-25/+51
2025-05-17Tokenizer: Cleanup consuming logicBaitinq2-74/+60
2025-05-17Codegen: Fix bug with if generation in nested functionsBaitinq2-33/+31
2025-05-17stdlib: Fix isdigitBaitinq1-2/+2
2025-05-17Misc: Add support for building on windowsBaitinq1-0/+7
2025-05-17Bootstrap: Tokenizer: Tokenize identifiersBaitinq2-16/+35
2025-05-17Bootstrap: Tokenizer: Tokenize charsBaitinq1-10/+98
2025-05-17Tokenzier: Correctly handle char escapingBaitinq1-6/+17
2025-05-17Codegen: Fix bug with global functions as paramsBaitinq2-8/+10
2025-05-15Bootstrap: Tokenizer: Tokenize intsBaitinq3-6/+63
2025-05-15Feature: Add support for null pointersBaitinq4-2/+21
2025-05-15Bootstrap: Tokenizer: Tokenize keywordsBaitinq1-4/+81
2025-05-15Bootstrap: Tokenizer: Continue implementingBaitinq4-7/+93
2025-05-15Codegen: Fix bug with nested ifsBaitinq1-2/+2
2025-05-14Misc: Cleanup flake.nixBaitinq1-20/+19
2025-05-14Bootstrap: Require filename argumentBaitinq1-0/+5
2025-05-14bootstrap: tokenizer: more changesBaitinq1-1/+46
2025-05-12