Skip to content

Commit 80accfe

Browse files
committed
[NFC] Fix TableGen include guards to match paths.
- Fix include guards for headers under utils/TableGen to match their paths
1 parent ac47edd commit 80accfe

25 files changed

+79
-75
lines changed

llvm/utils/TableGen/Basic/CodeGenIntrinsics.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
#ifndef LLVM_UTILS_TABLEGEN_CODEGENINTRINSICS_H
14-
#define LLVM_UTILS_TABLEGEN_CODEGENINTRINSICS_H
13+
#ifndef LLVM_UTILS_TABLEGEN_BASIC_CODEGENINTRINSICS_H
14+
#define LLVM_UTILS_TABLEGEN_BASIC_CODEGENINTRINSICS_H
1515

1616
#include "SDNodeProperties.h"
1717
#include "llvm/ADT/ArrayRef.h"
@@ -183,4 +183,4 @@ class CodeGenIntrinsicTable {
183183
};
184184
} // namespace llvm
185185

186-
#endif
186+
#endif // LLVM_UTILS_TABLEGEN_BASIC_CODEGENINTRINSICS_H

llvm/utils/TableGen/Basic/SDNodeProperties.h

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

9-
#ifndef LLVM_UTILS_TABLEGEN_SDNODEPROPERTIES_H
10-
#define LLVM_UTILS_TABLEGEN_SDNODEPROPERTIES_H
9+
#ifndef LLVM_UTILS_TABLEGEN_BASIC_SDNODEPROPERTIES_H
10+
#define LLVM_UTILS_TABLEGEN_BASIC_SDNODEPROPERTIES_H
1111

1212
namespace llvm {
1313

@@ -36,4 +36,4 @@ unsigned parseSDPatternOperatorProperties(Record *R);
3636

3737
} // namespace llvm
3838

39-
#endif
39+
#endif // LLVM_UTILS_TABLEGEN_BASIC_SDNODEPROPERTIES_H

llvm/utils/TableGen/Basic/SequenceToOffsetTable.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
//
1313
//===----------------------------------------------------------------------===//
1414

15-
#ifndef LLVM_UTILS_TABLEGEN_SEQUENCETOOFFSETTABLE_H
16-
#define LLVM_UTILS_TABLEGEN_SEQUENCETOOFFSETTABLE_H
15+
#ifndef LLVM_UTILS_TABLEGEN_BASIC_SEQUENCETOOFFSETTABLE_H
16+
#define LLVM_UTILS_TABLEGEN_BASIC_SEQUENCETOOFFSETTABLE_H
1717

1818
#include "llvm/Support/CommandLine.h"
1919
#include "llvm/Support/raw_ostream.h"
@@ -172,4 +172,4 @@ class SequenceToOffsetTable {
172172

173173
} // end namespace llvm
174174

175-
#endif
175+
#endif // LLVM_UTILS_TABLEGEN_BASIC_SEQUENCETOOFFSETTABLE_H

llvm/utils/TableGen/Common/AsmWriterInst.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
//
1414
//===----------------------------------------------------------------------===//
1515

16-
#ifndef LLVM_UTILS_TABLEGEN_ASMWRITERINST_H
17-
#define LLVM_UTILS_TABLEGEN_ASMWRITERINST_H
16+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_ASMWRITERINST_H
17+
#define LLVM_UTILS_TABLEGEN_COMMON_ASMWRITERINST_H
1818

1919
#include <string>
2020
#include <vector>
@@ -104,4 +104,4 @@ class AsmWriterInst {
104104
};
105105
} // namespace llvm
106106

107-
#endif
107+
#endif // LLVM_UTILS_TABLEGEN_COMMON_ASMWRITERINST_H

llvm/utils/TableGen/Common/CodeGenDAGPatterns.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
//
1212
//===----------------------------------------------------------------------===//
1313

14-
#ifndef LLVM_UTILS_TABLEGEN_CODEGENDAGPATTERNS_H
15-
#define LLVM_UTILS_TABLEGEN_CODEGENDAGPATTERNS_H
14+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_CODEGENDAGPATTERNS_H
15+
#define LLVM_UTILS_TABLEGEN_COMMON_CODEGENDAGPATTERNS_H
1616

1717
#include "Basic/CodeGenIntrinsics.h"
1818
#include "Basic/SDNodeProperties.h"
@@ -1266,4 +1266,4 @@ inline bool SDNodeInfo::ApplyTypeConstraints(TreePatternNode &N,
12661266

12671267
} // end namespace llvm
12681268

1269-
#endif
1269+
#endif // LLVM_UTILS_TABLEGEN_COMMON_CODEGENDAGPATTERNS_H

llvm/utils/TableGen/Common/CodeGenHwModes.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// Classes to parse and store HW mode information for instruction selection.
99
//===----------------------------------------------------------------------===//
1010

11-
#ifndef LLVM_UTILS_TABLEGEN_CODEGENHWMODES_H
12-
#define LLVM_UTILS_TABLEGEN_CODEGENHWMODES_H
11+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_CODEGENHWMODES_H
12+
#define LLVM_UTILS_TABLEGEN_COMMON_CODEGENHWMODES_H
1313

1414
#include "llvm/ADT/DenseMap.h"
1515
#include "llvm/ADT/StringRef.h"
@@ -72,4 +72,4 @@ struct CodeGenHwModes {
7272
};
7373
} // namespace llvm
7474

75-
#endif // LLVM_UTILS_TABLEGEN_CODEGENHWMODES_H
75+
#endif // LLVM_UTILS_TABLEGEN_COMMON_CODEGENHWMODES_H

llvm/utils/TableGen/Common/CodeGenInstAlias.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
#ifndef LLVM_UTILS_TABLEGEN_CODEGENINSTALIAS_H
14-
#define LLVM_UTILS_TABLEGEN_CODEGENINSTALIAS_H
13+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTALIAS_H
14+
#define LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTALIAS_H
1515

1616
#include "llvm/ADT/StringRef.h"
1717
#include <cassert>
@@ -102,4 +102,4 @@ class CodeGenInstAlias {
102102

103103
} // namespace llvm
104104

105-
#endif // LLVM_UTILS_TABLEGEN_CODEGENINSTALIAS_H
105+
#endif // LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTALIAS_H

llvm/utils/TableGen/Common/CodeGenInstruction.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
#ifndef LLVM_UTILS_TABLEGEN_CODEGENINSTRUCTION_H
14-
#define LLVM_UTILS_TABLEGEN_CODEGENINSTRUCTION_H
13+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTRUCTION_H
14+
#define LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTRUCTION_H
1515

1616
#include "llvm/ADT/BitVector.h"
1717
#include "llvm/ADT/StringMap.h"
@@ -344,4 +344,4 @@ class CodeGenInstruction {
344344
};
345345
} // namespace llvm
346346

347-
#endif
347+
#endif // LLVM_UTILS_TABLEGEN_COMMON_CODEGENINSTRUCTION_H

llvm/utils/TableGen/Common/CodeGenRegisters.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
//
1212
//===----------------------------------------------------------------------===//
1313

14-
#ifndef LLVM_UTILS_TABLEGEN_CODEGENREGISTERS_H
15-
#define LLVM_UTILS_TABLEGEN_CODEGENREGISTERS_H
14+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_CODEGENREGISTERS_H
15+
#define LLVM_UTILS_TABLEGEN_COMMON_CODEGENREGISTERS_H
1616

1717
#include "CodeGenHwModes.h"
1818
#include "InfoByHwMode.h"
@@ -860,4 +860,4 @@ class CodeGenRegBank {
860860

861861
} // end namespace llvm
862862

863-
#endif // LLVM_UTILS_TABLEGEN_CODEGENREGISTERS_H
863+
#endif // LLVM_UTILS_TABLEGEN_COMMON_CODEGENREGISTERS_H

llvm/utils/TableGen/Common/CodeGenSchedule.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
//
1212
//===----------------------------------------------------------------------===//
1313

14-
#ifndef LLVM_UTILS_TABLEGEN_CODEGENSCHEDULE_H
15-
#define LLVM_UTILS_TABLEGEN_CODEGENSCHEDULE_H
14+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_CODEGENSCHEDULE_H
15+
#define LLVM_UTILS_TABLEGEN_COMMON_CODEGENSCHEDULE_H
1616

1717
#include "llvm/ADT/APInt.h"
1818
#include "llvm/ADT/ArrayRef.h"
@@ -651,4 +651,4 @@ class CodeGenSchedModels {
651651

652652
} // namespace llvm
653653

654-
#endif
654+
#endif // LLVM_UTILS_TABLEGEN_COMMON_CODEGENSCHEDULE_H

llvm/utils/TableGen/Common/CodeGenTarget.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
//
1414
//===----------------------------------------------------------------------===//
1515

16-
#ifndef LLVM_UTILS_TABLEGEN_CODEGENTARGET_H
17-
#define LLVM_UTILS_TABLEGEN_CODEGENTARGET_H
16+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_CODEGENTARGET_H
17+
#define LLVM_UTILS_TABLEGEN_COMMON_CODEGENTARGET_H
1818

1919
#include "Basic/SDNodeProperties.h"
2020
#include "CodeGenHwModes.h"
@@ -252,4 +252,4 @@ class ComplexPattern {
252252

253253
} // namespace llvm
254254

255-
#endif
255+
#endif // LLVM_UTILS_TABLEGEN_COMMON_CODEGENTARGET_H

llvm/utils/TableGen/Common/DAGISelMatcher.h

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

9-
#ifndef LLVM_UTILS_TABLEGEN_DAGISELMATCHER_H
10-
#define LLVM_UTILS_TABLEGEN_DAGISELMATCHER_H
9+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_DAGISELMATCHER_H
10+
#define LLVM_UTILS_TABLEGEN_COMMON_DAGISELMATCHER_H
1111

1212
#include "llvm/ADT/ArrayRef.h"
1313
#include "llvm/ADT/SmallVector.h"
@@ -1130,4 +1130,4 @@ class CompleteMatchMatcher : public Matcher {
11301130

11311131
} // end namespace llvm
11321132

1133-
#endif
1133+
#endif // LLVM_UTILS_TABLEGEN_COMMON_DAGISELMATCHER_H

llvm/utils/TableGen/Common/GlobalISel/CXXPredicates.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
//
1313
//===----------------------------------------------------------------------===//
1414

15-
#ifndef LLVM_UTILS_MIRPATTERNS_CXXPREDICATES_H
16-
#define LLVM_UTILS_MIRPATTERNS_CXXPREDICATES_H
15+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_CXXPREDICATES_H
16+
#define LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_CXXPREDICATES_H
1717

1818
#include "llvm/ADT/DenseMap.h"
1919
#include "llvm/ADT/Hashing.h"
@@ -83,4 +83,4 @@ class CXXPredicateCode {
8383
} // namespace gi
8484
} // end namespace llvm
8585

86-
#endif // ifndef LLVM_UTILS_MIRPATTERNS_CXXPREDICATES_H
86+
#endif // LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_CXXPREDICATES_H

llvm/utils/TableGen/Common/GlobalISel/CodeExpander.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
#ifndef LLVM_UTILS_TABLEGEN_CODEEXPANDER_H
14-
#define LLVM_UTILS_TABLEGEN_CODEEXPANDER_H
13+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_CODEEXPANDER_H
14+
#define LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_CODEEXPANDER_H
1515

1616
#include "llvm/ADT/ArrayRef.h"
1717
#include "llvm/ADT/StringRef.h"
@@ -52,4 +52,4 @@ inline raw_ostream &operator<<(raw_ostream &OS, const CodeExpander &Expander) {
5252
}
5353
} // end namespace llvm
5454

55-
#endif // ifndef LLVM_UTILS_TABLEGEN_CODEEXPANDER_H
55+
#endif // LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_CODEEXPANDER_H

llvm/utils/TableGen/Common/GlobalISel/CodeExpansions.h

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,9 @@
1212

1313
#include "llvm/ADT/StringMap.h"
1414

15-
#ifndef LLVM_UTILS_TABLEGEN_CODEEXPANSIONS_H
16-
#define LLVM_UTILS_TABLEGEN_CODEEXPANSIONS_H
15+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_CODEEXPANSIONS_H
16+
#define LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_CODEEXPANSIONS_H
17+
1718
namespace llvm {
1819
class CodeExpansions {
1920
public:
@@ -44,4 +45,5 @@ class CodeExpansions {
4445
}
4546
};
4647
} // end namespace llvm
47-
#endif // ifndef LLVM_UTILS_TABLEGEN_CODEEXPANSIONS_H
48+
49+
#endif // LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_CODEEXPANSIONS_H

llvm/utils/TableGen/Common/GlobalISel/CombinerUtils.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
#ifndef LLVM_UTILS_TABLEGEN_COMBINERUTILS_H
14-
#define LLVM_UTILS_TABLEGEN_COMBINERUTILS_H
13+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_COMBINERUTILS_H
14+
#define LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_COMBINERUTILS_H
1515

1616
#include "llvm/ADT/StringRef.h"
1717
#include "llvm/TableGen/Record.h"
@@ -71,4 +71,4 @@ StringRef insertStrRef(StringRef S);
7171

7272
} // namespace llvm
7373

74-
#endif
74+
#endif // LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_COMBINERUTILS_H

llvm/utils/TableGen/Common/GlobalISel/GlobalISelMatchTable.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
///
1414
//===----------------------------------------------------------------------===//
1515

16-
#ifndef LLVM_UTILS_TABLEGEN_GLOBALISELMATCHTABLE_H
17-
#define LLVM_UTILS_TABLEGEN_GLOBALISELMATCHTABLE_H
16+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_GLOBALISELMATCHTABLE_H
17+
#define LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_GLOBALISELMATCHTABLE_H
1818

1919
#include "Common/CodeGenDAGPatterns.h"
2020
#include "llvm/ADT/ArrayRef.h"
@@ -2504,4 +2504,4 @@ class MakeTempRegisterAction : public MatchAction {
25042504
} // namespace gi
25052505
} // namespace llvm
25062506

2507-
#endif
2507+
#endif // LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_GLOBALISELMATCHTABLE_H

llvm/utils/TableGen/Common/GlobalISel/GlobalISelMatchTableExecutorEmitter.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
///
1313
//===----------------------------------------------------------------------===//
1414

15-
#ifndef LLVM_UTILS_TABLEGEN_GLOBALISELMATCHTABLEEXECUTOREMITTER_H
16-
#define LLVM_UTILS_TABLEGEN_GLOBALISELMATCHTABLEEXECUTOREMITTER_H
15+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_GLOBALISELMATCHTABLEEXECUTOREMITTER_H
16+
#define LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_GLOBALISELMATCHTABLEEXECUTOREMITTER_H
1717

1818
#include "Common/SubtargetFeatureInfo.h"
1919
#include "llvm/ADT/ArrayRef.h"
@@ -223,4 +223,4 @@ class GlobalISelMatchTableExecutorEmitter {
223223
};
224224
} // namespace llvm
225225

226-
#endif
226+
#endif // LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_GLOBALISELMATCHTABLEEXECUTOREMITTER_H

llvm/utils/TableGen/Common/GlobalISel/PatternParser.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
//
1111
//===----------------------------------------------------------------------===//
1212

13-
#ifndef LLVM_UTILS_GLOBALISEL_PATTERNPARSER_H
14-
#define LLVM_UTILS_GLOBALISEL_PATTERNPARSER_H
13+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_PATTERNPARSER_H
14+
#define LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_PATTERNPARSER_H
1515

1616
#include "llvm/ADT/ArrayRef.h"
1717
#include "llvm/ADT/STLFunctionalExtras.h"
@@ -115,4 +115,4 @@ class PatternParser {
115115
} // namespace gi
116116
} // namespace llvm
117117

118-
#endif
118+
#endif // LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_PATTERNPARSER_H

llvm/utils/TableGen/Common/GlobalISel/Patterns.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
//
1515
//===----------------------------------------------------------------------===//
1616

17-
#ifndef LLVM_UTILS_GLOBALISEL_PATTERNS_H
18-
#define LLVM_UTILS_GLOBALISEL_PATTERNS_H
17+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_PATTERNS_H
18+
#define LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_PATTERNS_H
1919

2020
#include "llvm/ADT/ArrayRef.h"
2121
#include "llvm/ADT/SetVector.h"
@@ -731,4 +731,4 @@ class BuiltinPattern : public InstructionPattern {
731731
} // namespace gi
732732
} // end namespace llvm
733733

734-
#endif // ifndef LLVM_UTILS_GLOBALISEL_PATTERNS_H
734+
#endif // LLVM_UTILS_TABLEGEN_COMMON_GLOBALISEL_PATTERNS_H

llvm/utils/TableGen/Common/InfoByHwMode.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// data).
1212
//===----------------------------------------------------------------------===//
1313

14-
#ifndef LLVM_UTILS_TABLEGEN_INFOBYHWMODE_H
15-
#define LLVM_UTILS_TABLEGEN_INFOBYHWMODE_H
14+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_INFOBYHWMODE_H
15+
#define LLVM_UTILS_TABLEGEN_COMMON_INFOBYHWMODE_H
1616

1717
#include "CodeGenHwModes.h"
1818
#include "llvm/ADT/SmallVector.h"
@@ -243,4 +243,4 @@ struct EncodingInfoByHwMode : public InfoByHwMode<Record *> {
243243

244244
} // namespace llvm
245245

246-
#endif // LLVM_UTILS_TABLEGEN_INFOBYHWMODE_H
246+
#endif // LLVM_UTILS_TABLEGEN_COMMON_INFOBYHWMODE_H

llvm/utils/TableGen/Common/OptEmitter.h

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

9-
#ifndef LLVM_UTILS_TABLEGEN_OPTEMITTER_H
10-
#define LLVM_UTILS_TABLEGEN_OPTEMITTER_H
9+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_OPTEMITTER_H
10+
#define LLVM_UTILS_TABLEGEN_COMMON_OPTEMITTER_H
1111

1212
namespace llvm {
1313
class Record;
1414
int CompareOptionRecords(Record *const *Av, Record *const *Bv);
1515
} // namespace llvm
16-
#endif
16+
17+
#endif // LLVM_UTILS_TABLEGEN_COMMON_OPTEMITTER_H

llvm/utils/TableGen/Common/PredicateExpander.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
//
1414
//===----------------------------------------------------------------------===//
1515

16-
#ifndef LLVM_UTILS_TABLEGEN_PREDICATEEXPANDER_H
17-
#define LLVM_UTILS_TABLEGEN_PREDICATEEXPANDER_H
16+
#ifndef LLVM_UTILS_TABLEGEN_COMMON_PREDICATEEXPANDER_H
17+
#define LLVM_UTILS_TABLEGEN_COMMON_PREDICATEEXPANDER_H
1818

1919
#include "llvm/ADT/StringRef.h"
2020
#include <vector>
@@ -128,4 +128,4 @@ class STIPredicateExpander : public PredicateExpander {
128128

129129
} // namespace llvm
130130

131-
#endif
131+
#endif // LLVM_UTILS_TABLEGEN_COMMON_PREDICATEEXPANDER_H

0 commit comments

Comments
 (0)