summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGStmt.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-12-07 23:17:26 +0000
committerBill Wendling <isanbard@gmail.com>2012-12-07 23:17:26 +0000
commit3087d026da6ad5d201497c0703ec876463180cfa (patch)
tree5d96a91771c2047af50532506d6354e70e774264 /clang/lib/CodeGen/CGStmt.cpp
parente94d843e43d1b87f843de276381eaf9b13b487dd (diff)
downloadbcm5719-llvm-3087d026da6ad5d201497c0703ec876463180cfa.tar.gz
bcm5719-llvm-3087d026da6ad5d201497c0703ec876463180cfa.zip
s/AttrListPtr/AttributeSet/g to better label what this class is going to be in the near future.
llvm-svn: 169652
Diffstat (limited to 'clang/lib/CodeGen/CGStmt.cpp')
-rw-r--r--clang/lib/CodeGen/CGStmt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp
index 7f2a982d3e0..eafa5507650 100644
--- a/clang/lib/CodeGen/CGStmt.cpp
+++ b/clang/lib/CodeGen/CGStmt.cpp
@@ -1640,7 +1640,7 @@ void CodeGenFunction::EmitAsmStmt(const AsmStmt &S) {
llvm::InlineAsm::get(FTy, AsmString, Constraints, HasSideEffect,
/* IsAlignStack */ false, AsmDialect);
llvm::CallInst *Result = Builder.CreateCall(IA, Args);
- Result->addAttribute(llvm::AttrListPtr::FunctionIndex,
+ Result->addAttribute(llvm::AttributeSet::FunctionIndex,
llvm::Attributes::get(getLLVMContext(),
llvm::Attributes::NoUnwind));
OpenPOWER on IntegriCloud