From f8fb44273cf1a7405ac2328de0a0eb9684cde887 Mon Sep 17 00:00:00 2001 From: Brian Dunlay Date: Thu, 3 Dec 2015 15:55:09 -0800 Subject: [PATCH] Fix Typos Arguments for this pr are appropriately unnecessary. --- lib/Driver/Driver.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Driver/Driver.cpp b/lib/Driver/Driver.cpp index 64fd4b6ba4149..018b5d677d21c 100644 --- a/lib/Driver/Driver.cpp +++ b/lib/Driver/Driver.cpp @@ -66,7 +66,7 @@ Driver::Driver(StringRef DriverExecutable, DefaultTargetTriple(llvm::sys::getDefaultTargetTriple()) { // The driver kind must be parsed prior to parsing arguments, since that - // affects how argumens are parsed. + // affects how arguments are parsed. parseDriverKind(Args.slice(1)); } @@ -852,7 +852,7 @@ static bool isSDKTooOld(StringRef sdkPath, const llvm::Triple &target) { void Driver::buildOutputInfo(const ToolChain &TC, const DerivedArgList &Args, const InputList &Inputs, OutputInfo &OI) const { // By default, the driver does not link its output; this will be updated - // appropariately below if linking is required. + // appropriately below if linking is required. if (driverKind == DriverKind::Interactive) { OI.CompilerMode = OutputInfo::Mode::Immediate;