diff --git a/flang/preprocessor.cc b/flang/preprocessor.cc index c01a83be5973..c7dd47a1827c 100644 --- a/flang/preprocessor.cc +++ b/flang/preprocessor.cc @@ -7,7 +7,6 @@ #include #include #include -#include // TODO pmk rm namespace Fortran { @@ -243,12 +242,7 @@ bool Preprocessor::MacroReplacement(const TokenSequence &input, for (; count-- > 0; ++at) { actual.push_back(input.GetText(at), input.GetBytes(at)); } - TokenSequence arg; - if (true /*pmk?*/ || !MacroReplacement(actual, &arg)) { - args.emplace_back(std::move(actual)); - } else { - args.emplace_back(std::move(arg)); - } + args.emplace_back(std::move(actual)); } TokenSequence repl{def.Apply(args)}; def.set_isDisabled(true);