Skip to content

Commit 6292f11

Browse files
committed
[ORC-RT] Rename sections_tracker.h to record_section_tracker.h.
This matches the type name defined in this header.
1 parent 4ef77d6 commit 6292f11

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

compiler-rt/lib/orc/elfnix_platform.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#include "compiler.h"
1616
#include "error.h"
1717
#include "jit_dispatch.h"
18-
#include "sections_tracker.h"
18+
#include "record_section_tracker.h"
1919
#include "wrapper_function_utils.h"
2020

2121
#include <algorithm>

compiler-rt/lib/orc/macho_platform.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include "error.h"
1818
#include "interval_map.h"
1919
#include "jit_dispatch.h"
20-
#include "sections_tracker.h"
20+
#include "record_section_tracker.h"
2121
#include "wrapper_function_utils.h"
2222

2323
#include <algorithm>

compiler-rt/lib/orc/sections_tracker.h renamed to compiler-rt/lib/orc/record_section_tracker.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
//===- sections_tracker.h - RecordSectionsTracker utilities for the ORC runtime
2-
//----------*- C++ -*-===//
1+
//===- record_section_tracker.h -- for fixed-sized record sects -*- C++ -*-===//
32
//
43
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
54
// See https://llvm.org/LICENSE.txt for license information.
@@ -12,8 +11,8 @@
1211
//
1312
//===----------------------------------------------------------------------===//
1413

15-
#ifndef ORC_RT_SECTIONSTRACKER_H
16-
#define ORC_RT_SECTIONSTRACKER_H
14+
#ifndef ORC_RT_RECORD_SECTION_TRACKER_H
15+
#define ORC_RT_RECORD_SECTION_TRACKER_H
1716

1817
#include "error.h"
1918
#include "executor_address.h"
@@ -111,4 +110,4 @@ template <typename RecordElement> class RecordSectionsTracker {
111110

112111
} // namespace orc_rt
113112

114-
#endif // ORC_RT_SECTIONSTRACKER_H
113+
#endif // ORC_RT_RECORD_SECTION_TRACKER_H

0 commit comments

Comments
 (0)