mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-23 12:40:17 +00:00
make SectionKind::Kind completely private now.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77836 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1ef9be2883
commit
7b1dcdfce1
@ -26,7 +26,6 @@ namespace llvm {
|
||||
/// in order to explain the predicates below.
|
||||
///
|
||||
class SectionKind {
|
||||
public:
|
||||
enum Kind {
|
||||
/// Metadata - Debug info sections or other metadata.
|
||||
Metadata,
|
||||
@ -113,10 +112,7 @@ public:
|
||||
/// linked image.
|
||||
ReadOnlyWithRelLocal
|
||||
|
||||
};
|
||||
|
||||
protected:
|
||||
Kind K : 8;
|
||||
} K : 8;
|
||||
public:
|
||||
|
||||
bool isMetadata() const { return K == Metadata; }
|
||||
|
Loading…
Reference in New Issue
Block a user