From 12075f71f9ae53eacee0772cc9548cb6ca1a0466 Mon Sep 17 00:00:00 2001 From: Jason Molenda Date: Tue, 22 Oct 2013 03:11:55 +0000 Subject: [PATCH] Update ResolveFunctionPointers to build after the changes of llvm r193091. Thanks to Ed Maste for narrowing it down. llvm-svn: 193140 --- lldb/source/Expression/IRForTarget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/source/Expression/IRForTarget.cpp b/lldb/source/Expression/IRForTarget.cpp index cac3fdf60dfa..4d14ebd7fd1c 100644 --- a/lldb/source/Expression/IRForTarget.cpp +++ b/lldb/source/Expression/IRForTarget.cpp @@ -361,8 +361,8 @@ IRForTarget::ResolveFunctionPointers(llvm::Module &llvm_module) // be called with the builtin attribute on call sites. Remove any such // attributes since it's illegal to have a builtin call to something // other than a nobuiltin function. - if (fun->hasFnAttribute(Attribute::NoBuiltin)) { - Attribute builtin = Attribute::get(fun->getContext(), Attribute::Builtin); + if (fun->hasFnAttribute(llvm::Attribute::NoBuiltin)) { + llvm::Attribute builtin = llvm::Attribute::get(fun->getContext(), llvm::Attribute::Builtin); for (auto u = fun->use_begin(), e = fun->use_end(); u != e; ++u) { if (auto call = dyn_cast(*u)) { -- 2.34.1