[llvm] 4147316 - [CodeGen][NPM]RAGreedy: Put up include guard in the header (#129510)

via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 3 22:23:51 PST 2025


Author: Akshat Oke
Date: 2025-03-04T11:53:49+05:30
New Revision: 41473162fd886d7db548fb288cf3620570f73c17

URL: https://github.com/llvm/llvm-project/commit/41473162fd886d7db548fb288cf3620570f73c17
DIFF: https://github.com/llvm/llvm-project/commit/41473162fd886d7db548fb288cf3620570f73c17.diff

LOG: [CodeGen][NPM]RAGreedy: Put up include guard in the header (#129510)

Added: 
    

Modified: 
    llvm/include/llvm/CodeGen/RegAllocGreedyPass.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/CodeGen/RegAllocGreedyPass.h b/llvm/include/llvm/CodeGen/RegAllocGreedyPass.h
index 5c0cbc3c4045c..1281ca851f069 100644
--- a/llvm/include/llvm/CodeGen/RegAllocGreedyPass.h
+++ b/llvm/include/llvm/CodeGen/RegAllocGreedyPass.h
@@ -5,6 +5,9 @@
 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 //
 //===----------------------------------------------------------------------===//
+#ifndef LLVM_CODEGEN_REGALLOC_GREEDY_PASS_H
+#define LLVM_CODEGEN_REGALLOC_GREEDY_PASS_H
+
 #include "llvm/CodeGen/MachineFunctionPass.h"
 #include "llvm/CodeGen/RegAllocCommon.h"
 #include "llvm/CodeGen/RegAllocFast.h"
@@ -42,3 +45,5 @@ class RAGreedyPass : public PassInfoMixin<RAGreedyPass> {
 private:
   Options Opts;
 };
+
+#endif // LLVM_CODEGEN_REGALLOC_GREEDY_PASS_H


        


More information about the llvm-commits mailing list