[compiler-rt] [llvm] [ORC] Implement basic reoptimization. (PR #67050)

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Sat Apr 13 17:02:39 PDT 2024


================
@@ -0,0 +1,179 @@
+//===- ReOptimizeLayer.h - Re-optimization layer interface ------*- 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
+//
+//===----------------------------------------------------------------------===//
+//
+// Re-optimization layer interface.
+//
+//===----------------------------------------------------------------------===//
+#ifndef LLVM_EXECUTIONENGINE_ORC_REOPTLAYER_H
+#define LLVM_EXECUTIONENGINE_ORC_REOPTLAYER_H
----------------
lhames wrote:

Include guard should be `LLVM_EXECUTIONENGINE_ORC_REOPTIMIZELAYER_H` to match the file name.

https://github.com/llvm/llvm-project/pull/67050


More information about the llvm-commits mailing list