Skip to content

Commit 9de31a6

Browse files
Merge pull request #1723 from jasonrandrews/review2
Minor edits to function multiversioning Learning Path
2 parents 4b3050f + 06239d5 commit 9de31a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/learning-paths/cross-platform/function-multiversioning/implementation-details.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,6 @@ When compiling `file2.c` a resolver is emitted for `func1` due to the presence o
101101

102102
Normally the called symbol is resolved at runtime (dynamically), however it may be possible to determine which function version to call at compile time (statically).
103103

104-
This may be possible when the caller function is compiled with a sufficiently high set of architecture features (explicitly by using the `target` attribute as an optimization hint, or the multiversioning attributes `target_version`/`target_clones`, and implicitly via command line options). Refer the the example in the next section for details.
104+
This may be possible when the caller function is compiled with a sufficiently high set of architecture features (explicitly by using the `target` attribute as an optimization hint, or the multiversioning attributes `target_version`/`target_clones`, and implicitly via command line options). Refer to the example in the next section for details.
105105

106106
The compiler optimizes calls to versioned functions which can be statically resolved into direct calls. As a result the versioned function may be inlined into the call site.

0 commit comments

Comments
 (0)