diff options
Diffstat (limited to 'llvm/tools/dsymutil/dsymutil.h')
| -rw-r--r-- | llvm/tools/dsymutil/dsymutil.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/llvm/tools/dsymutil/dsymutil.h b/llvm/tools/dsymutil/dsymutil.h index 91cb3276612..8f587421005 100644 --- a/llvm/tools/dsymutil/dsymutil.h +++ b/llvm/tools/dsymutil/dsymutil.h @@ -25,12 +25,13 @@ namespace llvm { namespace dsymutil { struct LinkOptions { - bool Verbose; ///< Verbosity - bool NoOutput; ///< Skip emitting output - bool NoODR; ///< Do not unique types according to ODR + bool Verbose; ///< Verbosity + bool NoOutput; ///< Skip emitting output + bool NoODR; ///< Do not unique types according to ODR + bool NoTimestamp; ///< Do not check swiftmodule timestamp std::string PrependPath; ///< -oso-prepend-path - LinkOptions() : Verbose(false), NoOutput(false) {} + LinkOptions() : Verbose(false), NoOutput(false), NoTimestamp(false) {} }; /// \brief Extract the DebugMaps from the given file. |

