From 3348c819ca7c7d06949e9be82fdf249c8ff89fcf Mon Sep 17 00:00:00 2001 From: Chandler Carruth Date: Thu, 28 May 2015 21:10:31 +0000 Subject: [PATCH] [omp] Fix a typo in a comment and a line I forgot to clang-format that Justin pointed out in post-commit review. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@238498 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Driver/Tools.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/Driver/Tools.cpp b/lib/Driver/Tools.cpp index e5faf9b8d2..84fa0b3f1b 100644 --- a/lib/Driver/Tools.cpp +++ b/lib/Driver/Tools.cpp @@ -2293,7 +2293,7 @@ enum OpenMPRuntimeKind { /// runtime library itself. OMPRT_GOMP, - /// The legacy name for the LLVM OpenMP runtim from when it was the Intel + /// The legacy name for the LLVM OpenMP runtime from when it was the Intel /// OpenMP runtime. We support this mode for users with existing dependencies /// on this runtime library name. OMPRT_IOMP5 @@ -2301,7 +2301,8 @@ enum OpenMPRuntimeKind { } /// Compute the desired OpenMP runtime from the flag provided. -static OpenMPRuntimeKind getOpenMPRuntime(const ToolChain &TC, const ArgList &Args) { +static OpenMPRuntimeKind getOpenMPRuntime(const ToolChain &TC, + const ArgList &Args) { StringRef RuntimeName(CLANG_DEFAULT_OPENMP_RUNTIME); const Arg *A = Args.getLastArg(options::OPT_fopenmp_EQ); -- 2.50.1