[llvm] [NFC][RA] Refactor RABasic into a Separate Header (PR #149555)

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Fri Jul 18 12:02:39 PDT 2025


================
@@ -0,0 +1,107 @@
+//===-- RegAllocBasic.h - Basic Register Allocator Header -----------------===//
+//
+// 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
+//
+//===----------------------------------------------------------------------===//
+//
+// This file declares the RABasic class, which provides a minimal
+// implementation of the basic register allocator.
----------------
MatzeB wrote:

use syntax recognized by doxygen (and possibly fix the pre-existing problem in RegAllocBasic.cpp)
```suggestion
/// \file This file declares the RABasic class, which provides a minimal
/// implementation of the basic register allocator.
```

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


More information about the llvm-commits mailing list