//===-------- LLVM-provided High-Level Optimization levels -*- C++ -*------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// /// \file /// /// This header enumerates the LLVM-provided high-level optimization levels. /// Each level has a specific goal and rationale. /// //===----------------------------------------------------------------------===// #ifndef LLVM_PASSES_OPTIMIZATIONLEVEL_H #define LLVM_PASSES_OPTIMIZATIONLEVEL_H #include <assert.h> namespace llvm { class OptimizationLevel final { … }; } // namespace llvm #endif