From b544363d0e4ca667c46d7b5a4ff2404a4025fa04 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 17 Apr 2013 18:26:02 +0000 Subject: Appease a gcc warning about an overflow in a constant conversion. llvm-svn: 179703 --- llvm/lib/IR/Core.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'llvm/lib/IR/Core.cpp') diff --git a/llvm/lib/IR/Core.cpp b/llvm/lib/IR/Core.cpp index c994ef2bdf8..53244e7cd41 100644 --- a/llvm/lib/IR/Core.cpp +++ b/llvm/lib/IR/Core.cpp @@ -1446,7 +1446,8 @@ void LLVMAddFunctionAttr(LLVMValueRef Fn, LLVMAttribute PA) { void LLVMAddTargetDependentFunctionAttr(LLVMValueRef Fn, const char *A, const char *V) { Function *Func = unwrap(Fn); - AttributeSet::AttrIndex Idx = AttributeSet::FunctionIndex; + AttributeSet::AttrIndex Idx = + AttributeSet::AttrIndex(AttributeSet::FunctionIndex); AttrBuilder B; B.addAttribute(A, V); -- cgit v1.2.3