| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2017-01-18 | calling convention for MSP430 interrupts | Jorge Aparicio | -1/+1 | |
| This calling convention is used to define interrup handlers on MSP430 microcontrollers. Usage looks like this: ``` rust #[no_mangle] #[link_section = "__interrupt_vector_10"] pub static TIM0_VECTOR: unsafe extern "msp430-interrupt" fn() = tim0; unsafe extern "msp430-interrupt" fn tim0() { P1OUT.write(0x00); } ``` which generates the following assembly: ``` asm Disassembly of section __interrupt_vector_10: 0000fff2 <TIM0_VECTOR>: fff2: 10 c0 interrupt service routine at 0xc010 Disassembly of section .text: 0000c010 <_ZN3msp4tim017h3193b957fd6a4fd4E>: c010: c2 43 21 00 mov.b #0, &0x0021 ;r3 As==00 c014: 00 13 reti ... ``` | ||||
| 2016-12-30 | Further and hopefully final Windows fixes | Simonas Kazlauskas | -1/+1 | |
| 2016-12-26 | fix ui test | Jorge Aparicio | -1/+1 | |
| 2016-08-30 | Guard against platforms on which the sysv64 calling convention is not valid ↵ | CensoredUsername | -1/+1 | |
| in non-codegen tests. Remove false positive in a test that relied on the exact formatting of an error string and rewrite the sysv64 register allocation test at it was triggering undefined behaviour | ||||
| 2016-08-16 | RUST_NEW_ERROR_FORMAT is no more | Seo Sanghyeon | -2/+2 | |
| 2016-07-14 | Add unicode test to ui tests | Jonathan Turner | -0/+8 | |
