Skip to content

Commit 477ae73

Browse files
committed
Fix includes & include guard
1 parent 2b167dd commit 477ae73

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

llvm/include/llvm/CodeGen/SDNodeInfo.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
//
77
//===----------------------------------------------------------------------===//
88

9-
#ifndef LLVM_INCLUDE_LLVM_CODEGEN_SDNODEINFO_H
10-
#define LLVM_INCLUDE_LLVM_CODEGEN_SDNODEINFO_H
9+
#ifndef LLVM_CODEGEN_SDNODEINFO_H
10+
#define LLVM_CODEGEN_SDNODEINFO_H
1111

12-
#include "ISDOpcodes.h"
1312
#include "llvm/ADT/ArrayRef.h"
1413
#include "llvm/ADT/StringTable.h"
14+
#include "llvm/CodeGen/ISDOpcodes.h"
1515
#include "llvm/CodeGenTypes/MachineValueType.h"
1616

1717
namespace llvm {
@@ -112,4 +112,4 @@ class SDNodeInfo final {
112112

113113
} // namespace llvm
114114

115-
#endif // LLVM_INCLUDE_LLVM_CODEGEN_SDNODEINFO_H
115+
#endif // LLVM_CODEGEN_SDNODEINFO_H

llvm/include/llvm/CodeGen/SelectionDAGTargetInfo.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
#ifndef LLVM_CODEGEN_SELECTIONDAGTARGETINFO_H
1616
#define LLVM_CODEGEN_SELECTIONDAGTARGETINFO_H
1717

18-
#include "SDNodeInfo.h"
1918
#include "llvm/CodeGen/MachineMemOperand.h"
19+
#include "llvm/CodeGen/SDNodeInfo.h"
2020
#include "llvm/CodeGen/SelectionDAGNodes.h"
2121
#include "llvm/Support/CodeGen.h"
2222
#include <utility>

0 commit comments

Comments
 (0)