/* * Copyright (C) 2017-2019 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "runtime/program/program.h" #include "compiler_options.h" #include namespace NEO { const std::vector Program::internalOptionsToExtract = {CompilerOptions::gtpinRera, CompilerOptions::greaterThan4gbBuffersRequired}; bool Program::isFlagOption(ConstStringRef option) { return true; } bool Program::isOptionValueValid(ConstStringRef option, ConstStringRef value) { return false; } }; // namespace NEO