[llvm-commits] [dragonegg] r169675 - in /dragonegg/trunk/include/dragonegg: Internals.h TypeConversion.h
Duncan Sands
baldrick at free.fr
Sat Dec 8 01:40:20 PST 2012
Author: baldrick
Date: Sat Dec 8 03:40:20 2012
New Revision: 169675
URL: http://llvm.org/viewvc/llvm-project?rev=169675&view=rev
Log:
Rename AttrListPtr to AttributeSet in header files.
Modified:
dragonegg/trunk/include/dragonegg/Internals.h
dragonegg/trunk/include/dragonegg/TypeConversion.h
Modified: dragonegg/trunk/include/dragonegg/Internals.h
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/include/dragonegg/Internals.h?rev=169675&r1=169674&r2=169675&view=diff
==============================================================================
--- dragonegg/trunk/include/dragonegg/Internals.h (original)
+++ dragonegg/trunk/include/dragonegg/Internals.h Sat Dec 8 03:40:20 2012
@@ -590,7 +590,7 @@
Value *EmitCondExpr(tree_node *exp);
#endif
Value *EmitCallOf(Value *Callee, gimple_statement_d *stmt,
- const MemRef *DestLoc, const AttrListPtr &PAL);
+ const MemRef *DestLoc, const AttributeSet &PAL);
CallInst *EmitSimpleCall(StringRef CalleeName, tree_node *ret_type,
/* arguments */ ...) END_WITH_NULL;
Value *EmitFieldAnnotation(Value *FieldPtr, tree_node *FieldDecl);
Modified: dragonegg/trunk/include/dragonegg/TypeConversion.h
URL: http://llvm.org/viewvc/llvm-project/dragonegg/trunk/include/dragonegg/TypeConversion.h?rev=169675&r1=169674&r2=169675&view=diff
==============================================================================
--- dragonegg/trunk/include/dragonegg/TypeConversion.h (original)
+++ dragonegg/trunk/include/dragonegg/TypeConversion.h Sat Dec 8 03:40:20 2012
@@ -29,7 +29,7 @@
// Forward declarations.
namespace llvm {
- class AttrListPtr;
+ class AttributeSet;
class FunctionType;
class LLVMContext;
class Type;
@@ -91,7 +91,7 @@
extern llvm::FunctionType *ConvertFunctionType(tree_node *type, tree_node *decl,
tree_node *static_chain,
llvm::CallingConv::ID &CC,
- llvm::AttrListPtr &PAL);
+ llvm::AttributeSet &PAL);
/// ConvertArgListToFnType - Given a DECL_ARGUMENTS list on an GCC tree,
/// return the LLVM type corresponding to the function. This is useful for
@@ -101,6 +101,6 @@
tree_node *static_chain,
bool KNRPromotion,
llvm::CallingConv::ID &CC,
- llvm::AttrListPtr &PAL);
+ llvm::AttributeSet &PAL);
#endif /* DRAGONEGG_TYPES_H */
More information about the llvm-commits
mailing list