summaryrefslogtreecommitdiff
path: root/lib/Driver/Types.cpp
diff options
context:
space:
mode:
authorPuyan Lotfi <puyan@puyan.org>2019-10-12 06:25:07 +0000
committerPuyan Lotfi <puyan@puyan.org>2019-10-12 06:25:07 +0000
commit958f2757806f0ca7324c9909f3270f0b4409a2e5 (patch)
tree8b3bdb4085f6e830682670cb1d5559f4748357e9 /lib/Driver/Types.cpp
parent3b5d9980e674023101c52c6e8339e832b7cf43c8 (diff)
downloadclang-958f2757806f0ca7324c9909f3270f0b4409a2e5.tar.gz
[clang][IFS] Fixing spelling errors in interface-stubs OPT flag (NFC).
This is just a long standing spelling error that was found recently. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@374638 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Driver/Types.cpp')
-rw-r--r--lib/Driver/Types.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Driver/Types.cpp b/lib/Driver/Types.cpp
index 6241fac0c8..a30710645a 100644
--- a/lib/Driver/Types.cpp
+++ b/lib/Driver/Types.cpp
@@ -321,7 +321,7 @@ void types::getCompilationPhases(const clang::driver::Driver &Driver,
[](phases::ID Phase) { return Phase <= phases::Precompile; });
// Treat Interface Stubs like its own compilation mode.
- else if (DAL.getLastArg(options::OPT_emit_iterface_stubs)) {
+ else if (DAL.getLastArg(options::OPT_emit_interface_stubs)) {
llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> IfsModePhaseList;
llvm::SmallVector<phases::ID, phases::MaxNumberOfPhases> &PL = PhaseList;
phases::ID LastPhase = phases::IfsMerge;