[llvm] r174955 - Merge the collected attributes into the call instruction's attributes.
Bill Wendling
isanbard at gmail.com
Tue Feb 12 02:13:06 PST 2013
Author: void
Date: Tue Feb 12 04:13:06 2013
New Revision: 174955
URL: http://llvm.org/viewvc/llvm-project?rev=174955&view=rev
Log:
Merge the collected attributes into the call instruction's attributes.
Modified:
llvm/trunk/lib/AsmParser/LLParser.cpp
Modified: llvm/trunk/lib/AsmParser/LLParser.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/AsmParser/LLParser.cpp?rev=174955&r1=174954&r2=174955&view=diff
==============================================================================
--- llvm/trunk/lib/AsmParser/LLParser.cpp (original)
+++ llvm/trunk/lib/AsmParser/LLParser.cpp Tue Feb 12 04:13:06 2013
@@ -102,7 +102,7 @@ bool LLParser::ValidateEndOfModule() {
AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
AS.getFnAttributes());
-
+ FnAttrs.merge(B);
AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
AttributeSet::get(Context,
AttributeSet::FunctionIndex,
@@ -113,7 +113,7 @@ bool LLParser::ValidateEndOfModule() {
AttrBuilder FnAttrs(AS.getFnAttributes(), AttributeSet::FunctionIndex);
AS = AS.removeAttributes(Context, AttributeSet::FunctionIndex,
AS.getFnAttributes());
-
+ FnAttrs.merge(B);
AS = AS.addAttributes(Context, AttributeSet::FunctionIndex,
AttributeSet::get(Context,
AttributeSet::FunctionIndex,
More information about the llvm-commits
mailing list