Displaying 2 results from an estimated 2 matches for "bearskins".
2010 Jan 09
0
[LLVMdev] Inlining
Hello Dustin,
Alwaysinline is not a hint.  It forces something inline that wouldn't have otherwise been as long as the linkage type permits it.  (You just ran into a situation where linkage did not permit it.)
Personally, I don't see the need for a preprocessor in most circumstances.  If you need to do type substitution you can use an opaque type.  The only reason for conditional
2010 Jan 09
2
[LLVMdev] Inlining
On 01/09/2010 10:00 AM, Samuel Crow wrote:
> 
> Always inline is the closest to a preprocessor macro you can get in
> LLVM Assembly since it doesn't have a preprocessor at all.
Mine does. :-)
> ...LLVM does
> aggressive inlining for functions used only once so those instances
> don't require specification as alwaysinline.
What I'm trying to do is understand the