mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-02-01 01:43:57 +00:00
Use the enum instead of 'unsigned'.
llvm-svn: 150632
This commit is contained in:
parent
0e954f92c1
commit
2f3fb87abe
@ -180,10 +180,10 @@ public:
|
||||
enum ModAttrBehavior { Error = 1, Warning = 2, Require = 3, Override = 4 };
|
||||
|
||||
struct ModuleFlagEntry {
|
||||
unsigned Behavior;
|
||||
ModAttrBehavior Behavior;
|
||||
MDString *Key;
|
||||
Value *Val;
|
||||
ModuleFlagEntry(unsigned B, MDString *K, Value *V)
|
||||
ModuleFlagEntry(ModAttrBehavior B, MDString *K, Value *V)
|
||||
: Behavior(B), Key(K), Val(V) {}
|
||||
};
|
||||
|
||||
|
@ -339,7 +339,8 @@ getModuleFlagsMetadata(SmallVectorImpl<ModuleFlagEntry> &Flags) const {
|
||||
ConstantInt *Behavior = cast<ConstantInt>(Flag->getOperand(0));
|
||||
MDString *Key = cast<MDString>(Flag->getOperand(1));
|
||||
Value *Val = Flag->getOperand(2);
|
||||
Flags.push_back(ModuleFlagEntry(Behavior->getZExtValue(), Key, Val));
|
||||
Flags.push_back(ModuleFlagEntry(ModAttrBehavior(Behavior->getZExtValue()),
|
||||
Key, Val));
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user