-
Type:
Enhancement
-
Resolution: Unresolved
-
Priority:
Medium
-
Code Generation Tools
-
CODEGEN-11235
-
-
-
default
The attached test case has this line ...
f2(_symval(&linker_symbol));
The built-in function _symval is documented.
Build it ...
% tiarmclang -S file.c
file.c:9:8: warning: implicit declaration of function '_symval' is invalid in C99 [-Wimplicit-function-declaration]
f2(_symval(&linker_symbol));
^
1 warning generated.
Inspect the generated assembly to see that a function named _symval is called.
% findstr _symval file.s
bl _symval
.addrsig_sym _symval