diff options
author | Ed Maste <emaste@freebsd.org> | 2019-02-06 20:36:02 +0000 |
---|---|---|
committer | Ed Maste <emaste@freebsd.org> | 2019-02-06 20:36:02 +0000 |
commit | e9932c103b6f249c0ce04983aef76e3357390e59 (patch) | |
tree | d1c5a00e053a19c100cb2f05a372c2b4fba86497 | |
parent | 6cba96ed52e11295e65ae5f05ebd02f594d7081c (diff) | |
download | bcm5719-llvm-e9932c103b6f249c0ce04983aef76e3357390e59.tar.gz bcm5719-llvm-e9932c103b6f249c0ce04983aef76e3357390e59.zip |
Correct "varaible" typo in comment
llvm-svn: 353340
-rw-r--r-- | lld/ELF/Config.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lld/ELF/Config.h b/lld/ELF/Config.h index 74400261d71..4e6c44f5db3 100644 --- a/lld/ELF/Config.h +++ b/lld/ELF/Config.h @@ -265,7 +265,7 @@ struct Configuration { // // Since the flag is updated by multi-threaded code, we use std::atomic. // (Writing to a variable is not considered thread-safe even if the - // varaible is boolean and we always set the same value from all threads.) + // variable is boolean and we always set the same value from all threads.) std::atomic<bool> HasStaticTlsModel{false}; // Holds set of ELF header flags for the target. |