summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2018-01-07Trans - Draft ARM32 supportJohn Hodge3-9/+42
2018-01-06Merge branch 'master' of https://github.com/thepowersgang/mrustcJohn Hodge1-1/+1
2018-01-06main - fix incorrect type deduction with some gcc versionsWilliam Pitcock1-1/+1
GCC 6.4 on Alpine incorrectly deduces the type returned from ::std::strchr(const char *, char) as 'char *', instead of 'const char *', which causes the wrong constructor to be used. Closes #32.
2018-01-01Codegen C - Remove hacky null pointer referenceJohn Hodge1-15/+26
2017-12-31Codegen - Remove need for `-z muldefs`John Hodge4-17/+100
2017-12-30Codegen C - Remove dead code, fix warning with mainJohn Hodge1-91/+1
2017-12-30MIR From HIR (match) - Change assertion to match actual conditionsJohn Hodge1-1/+1
2017-12-30Typecheck Expr - (minor) Logging wrapper when checking completeness, catches ↵John Hodge1-0/+1
infinite recursion
2017-12-30format_args! - Set source module when parsing expressionsJohn Hodge1-0/+1
2017-12-30main - Slightly better error reportingJohn Hodge1-0/+2
2017-12-30macro_rules - Fix a few edge casesJohn Hodge2-5/+52
2017-12-29Fix enums with `repr(u64)`Adam Chodorowski2-2/+2
2017-12-26Merge branch 'master' of https://github.com/thepowersgang/mrustcJohn Hodge1-1/+1
2017-12-26MIR Optimise - Fix sligt bugsJohn Hodge1-3/+12
2017-12-25Fix FMTequal-l21-1/+1
2017-12-20MIR Optimise - Redo DeTemporary pass, works for build rustc/cargo, rustc testedJohn Hodge1-124/+122
2017-12-16proc_macro - Avoid warnings due to unused return valuesJohn Hodge1-4/+12
2017-12-09HIR+Trans - Handling of various enum reprsJohn Hodge4-29/+48
2017-12-09MIR Optimise - Fiddling aroundJohn Hodge1-6/+23
2017-12-03MIR Optimise - Tweaks to DeTemporary passJohn Hodge1-3/+15
2017-12-03Trans - Get sizes of !Sized pointersJohn Hodge1-2/+6
2017-12-02Codegen C - Fiddling with SwitchValue handlingJohn Hodge1-53/+91
2017-12-02MIR Optimise - Fix infinite replacementJohn Hodge1-0/+11
2017-11-30Codegen C - Structured SwitchValue partial support, unify Switch handlingJohn Hodge3-34/+66
2017-11-26HIR/MIR - Error checking for assigning into ! (as opposed to from !)John Hodge6-29/+86
2017-11-26HIR From AST - Fix logic that auto-applies ! to loopsJohn Hodge1-8/+4
2017-11-26macro_rules - Fix parsing of loop labelsJohn Hodge1-1/+8
2017-11-26Resolve Absolute - Fix edge case where there's no scopes during var lookupJohn Hodge1-1/+1
2017-11-26Typecheck Expressions - Handle type being known when possibility addedJohn Hodge1-1/+6
2017-11-26HIR Const Eval - Fix crash with use-after-free in TUJohn Hodge1-7/+8
2017-11-25HIR Expand - Allow tuple patterns to have .. if all entries are coveredJohn Hodge1-1/+1
2017-11-25MIR Gen - Comment about cast bugJohn Hodge1-0/+2
2017-11-25Codegen C - Better error messages for bad SwitchJohn Hodge1-2/+2
2017-11-25MIR Optimise - Tweaking to DeTemporaryJohn Hodge1-8/+22
2017-11-25MIR Optimise - Add a new pass aimed at removing useless temporariesJohn Hodge1-18/+151
2017-11-25MIR Cleanup - Delete any statements including/after use of !John Hodge1-1/+15
2017-11-24AST - (minor) Syntax fixJohn Hodge1-1/+1
2017-11-24Codegen C - Generate call_mut for both Fn and FnMutJohn Hodge1-7/+12
2017-11-22MIR Const Eval - Fix duplicate item namesJohn Hodge1-6/+8
2017-11-22Target - Fix struct size calculations (align overall size)John Hodge1-0/+10
2017-11-21MIR Gen - Fix use-after-move when partially moved in one arm and optionally ↵John Hodge2-1/+17
moved in another
2017-11-21MIR Helpers - Print file/line in assertJohn Hodge1-1/+1
2017-11-21MIR Validate Full - Alter handling of BoxJohn Hodge1-1/+11
2017-11-19main - Clear lang items in proc macro crates (prevent them from being ↵John Hodge1-0/+1
serialised)
2017-11-19Proc Macro - Send attributes if in the listJohn Hodge1-0/+38
2017-11-19All - Include proc_macro attribute list in metadataJohn Hodge8-27/+92
2017-11-19Typecheck Expressions - Incremental change to auto trait handlingJohn Hodge1-0/+7
2017-11-19Typecheck Expressions - Prevent inferrence race with operator overridesJohn Hodge1-1/+5
2017-11-18HIR Typecheck - More and more special rulesJohn Hodge1-2/+22
2017-11-18Typecheck Expressions - Tweak for edge case in cargoJohn Hodge1-23/+24