3.6.1.6 Inline Function
(Ask a Question)- Syntax
#pragma HLS function inline
- Description
- This pragma forces a given function to be inlined.
- Position
- At the beginning of the function definition block.
- Examples
-
int sum(int *a) { #pragma HLS function inline ... }