diff options
author | Quentin Colombet <qcolombet@apple.com> | 2015-11-12 18:16:27 +0000 |
---|---|---|
committer | Quentin Colombet <qcolombet@apple.com> | 2015-11-12 18:16:27 +0000 |
commit | aeb85934b653c9d5d74fb85152661870cd04cad9 (patch) | |
tree | ecba8a010da6dc82ccdc52268f926241dd273713 /llvm/lib/CodeGen | |
parent | 94dc1e0d34ac510b7570ee25902d8ca841d9b088 (diff) | |
download | bcm5719-llvm-aeb85934b653c9d5d74fb85152661870cd04cad9.tar.gz bcm5719-llvm-aeb85934b653c9d5d74fb85152661870cd04cad9.zip |
[ShrinkWrap] Fix a typo in a comment.
llvm-svn: 252918
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/ShrinkWrap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/ShrinkWrap.cpp b/llvm/lib/CodeGen/ShrinkWrap.cpp index 368f138f959..8a797018815 100644 --- a/llvm/lib/CodeGen/ShrinkWrap.cpp +++ b/llvm/lib/CodeGen/ShrinkWrap.cpp @@ -466,7 +466,7 @@ bool ShrinkWrap::isShrinkWrapEnabled(const MachineFunction &MF) { switch (EnableShrinkWrapOpt) { case cl::BOU_UNSET: return TFI->enableShrinkWrapping(MF) && - // Windows with CFI has some limitations that makes it impossible + // Windows with CFI has some limitations that make it impossible // to use shrink-wrapping. !MF.getTarget().getMCAsmInfo()->usesWindowsCFI(); // If EnableShrinkWrap is set, it takes precedence on whatever the |