[Openmp-commits] [openmp] [NFC][CodeGen] Change CodeGenOpt::Level/CodeGenFileType into enum classes (PR #66295)
Andrzej WarzyĆski via Openmp-commits
openmp-commits at lists.llvm.org
Thu Sep 14 07:48:41 PDT 2023
================
@@ -661,27 +661,27 @@ static bool FixupInvocation(CompilerInvocation &Invocation,
static unsigned getOptimizationLevel(ArgList &Args, InputKind IK,
DiagnosticsEngine &Diags) {
- unsigned DefaultOpt = llvm::CodeGenOpt::None;
+ unsigned DefaultOpt = 0;
if ((IK.getLanguage() == Language::OpenCL ||
IK.getLanguage() == Language::OpenCLCXX) &&
!Args.hasArg(OPT_cl_opt_disable))
- DefaultOpt = llvm::CodeGenOpt::Default;
+ DefaultOpt = 2;
----------------
banach-space wrote:
+1
Otherwise the the default is effectively defined twice in two different places.
https://github.com/llvm/llvm-project/pull/66295
More information about the Openmp-commits
mailing list