Expose parameter attributes via C bindings.

Patch by Anders Johnsen!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@50360 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Gordon Henriksen
2008-04-28 17:37:06 +00:00
parent 1f13c686df
commit e2435da8ab
4 changed files with 76 additions and 0 deletions

View File

@@ -15,6 +15,7 @@
#define LLVM_ARGUMENT_H
#include "llvm/Value.h"
#include "llvm/ParameterAttributes.h"
namespace llvm {
@@ -60,7 +61,13 @@ public:
/// hasSRetAttr - Return true if this argument has the sret attribute on it in
/// its containing function.
bool hasStructRetAttr() const;
/// addAttr - Add a ParamAttr to an argument
void addAttr(ParameterAttributes);
/// removeAttr - Remove a ParamAttr from an argument
void removeAttr(ParameterAttributes);
virtual void print(std::ostream &OS) const;
void print(std::ostream *OS) const {
if (OS) print(*OS);