compiler_builtins 0.1.160

Compiler intrinsics used by the Rust compiler.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
 .macro FUNCTION_BEGIN name
 .text
 .p2align 5
 .globl \name
 .type \name, @function
\name:
 .endm

 .macro FUNCTION_END name
 .size \name, . - \name
 .endm