diff options
Diffstat (limited to 'clang/lib/Driver/ToolChains/Darwin.h')
-rw-r--r-- | clang/lib/Driver/ToolChains/Darwin.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/lib/Driver/ToolChains/Darwin.h b/clang/lib/Driver/ToolChains/Darwin.h index 3c6c740645c..bcc76111a4e 100644 --- a/clang/lib/Driver/ToolChains/Darwin.h +++ b/clang/lib/Driver/ToolChains/Darwin.h @@ -174,16 +174,16 @@ public: /// Options to control how a runtime library is linked. enum RuntimeLinkOptions : unsigned { - // Link the library in even if it can't be found in the VFS. + /// Link the library in even if it can't be found in the VFS. RLO_AlwaysLink = 1 << 0, - // Use the embedded runtime from the macho_embedded directory. + /// Use the embedded runtime from the macho_embedded directory. RLO_IsEmbedded = 1 << 1, - // Emit rpaths for @executable_path as well as the resource directory. + /// Emit rpaths for @executable_path as well as the resource directory. RLO_AddRPath = 1 << 2, - //< Link the library in before any others. + /// Link the library in before any others. RLO_FirstLink = 1 << 3, }; |