[llvm-commits] CVS: llvm/include/llvm/Support/CallSite.h
Chris Lattner
lattner at cs.uiuc.edu
Fri May 6 13:26:39 PDT 2005
Changes in directory llvm/include/llvm/Support:
CallSite.h updated: 1.18 -> 1.19
---
Log message:
Add support for explicit calling conventions
---
Diffs of the changes: (+5 -0)
CallSite.h | 5 +++++
1 files changed, 5 insertions(+)
Index: llvm/include/llvm/Support/CallSite.h
diff -u llvm/include/llvm/Support/CallSite.h:1.18 llvm/include/llvm/Support/CallSite.h:1.19
--- llvm/include/llvm/Support/CallSite.h:1.18 Thu Apr 21 15:44:59 2005
+++ llvm/include/llvm/Support/CallSite.h Fri May 6 15:26:26 2005
@@ -52,6 +52,11 @@
return CallSite();
}
+ /// getCallingConv/setCallingConv - get or set the calling convention of the
+ /// call.
+ unsigned getCallingConv() const;
+ void setCallingConv(unsigned CC);
+
/// getType - Return the type of the instruction that generated this call site
///
const Type *getType() const { return I->getType(); }
More information about the llvm-commits
mailing list