search for: linkage_linker_priv

Displaying 1 result from an estimated 1 matches for "linkage_linker_priv".

2012 Jun 07
1
[LLVMdev] linker_private* linkage
Hi, I'm trying to understand better how linker_private (and friends) work. From what I can understand from the manual (http://llvm.org/docs/LangRef.html#linkage_linker_private), it seems that a linker_private function cannot be removed by the optimizers. Only the linker can discard the symbol. However, I tested with 'opt -O1' and a function with *no users* is removed. Same thing happens with the other linker_private_* linkage types. Is my reading of t...