diff options
| author | Bill Wendling <isanbard@gmail.com> | 2012-02-16 10:28:10 +0000 |
|---|---|---|
| committer | Bill Wendling <isanbard@gmail.com> | 2012-02-16 10:28:10 +0000 |
| commit | 89cc16637d8e2d6c3b0ecb7dea63b0b2a0102167 (patch) | |
| tree | c5ae94899d2ce4374f5a94db72a580db34a1e21b /llvm/lib/VMCore/Module.cpp | |
| parent | 08f02afd8476c323a38bb35e50f38925dd45e79d (diff) | |
| download | bcm5719-llvm-89cc16637d8e2d6c3b0ecb7dea63b0b2a0102167.tar.gz bcm5719-llvm-89cc16637d8e2d6c3b0ecb7dea63b0b2a0102167.zip | |
s/ModAttrBehavior/ModFlagBehavior/g to be consistent with how module flags are named elsewhere.
llvm-svn: 150679
Diffstat (limited to 'llvm/lib/VMCore/Module.cpp')
| -rw-r--r-- | llvm/lib/VMCore/Module.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/VMCore/Module.cpp b/llvm/lib/VMCore/Module.cpp index cc6ae0e000f..e8bc6dbe970 100644 --- a/llvm/lib/VMCore/Module.cpp +++ b/llvm/lib/VMCore/Module.cpp @@ -339,7 +339,7 @@ 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(ModAttrBehavior(Behavior->getZExtValue()), + Flags.push_back(ModuleFlagEntry(ModFlagBehavior(Behavior->getZExtValue()), Key, Val)); } } @@ -361,7 +361,7 @@ NamedMDNode *Module::getOrInsertModuleFlagsMetadata() { /// addModuleFlag - Add a module-level flag to the module-level flags /// metadata. It will create the module-level flags named metadata if it doesn't /// already exist. -void Module::addModuleFlag(ModAttrBehavior Behavior, StringRef Key, +void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, Value *Val) { Type *Int32Ty = Type::getInt32Ty(Context); Value *Ops[3] = { @@ -369,7 +369,7 @@ void Module::addModuleFlag(ModAttrBehavior Behavior, StringRef Key, }; getOrInsertModuleFlagsMetadata()->addOperand(MDNode::get(Context, Ops)); } -void Module::addModuleFlag(ModAttrBehavior Behavior, StringRef Key, +void Module::addModuleFlag(ModFlagBehavior Behavior, StringRef Key, uint32_t Val) { Type *Int32Ty = Type::getInt32Ty(Context); addModuleFlag(Behavior, Key, ConstantInt::get(Int32Ty, Val)); |

