[Support] Add storage specifier for MachO::NListType.

This should fix UB warnings from the sanitizer bots: LLD performs bit
manipulations on enums of this type, and these are UB if the underlying
storage type isn't specified.

llvm-svn: 277251
This commit is contained in:
Lang Hames 2016-07-29 23:17:53 +00:00
parent 7256f51b18
commit 6ecbd16f00
1 changed files with 1 additions and 1 deletions

View File

@ -302,7 +302,7 @@ namespace llvm {
N_EXT = 0x01
};
enum NListType {
enum NListType : uint8_t {
// Constants for the "n_type & N_TYPE" llvm::MachO::nlist and
// llvm::MachO::nlist_64
N_UNDF = 0x0u,