From 08e78b18b8ef2c939ee95469662c98e23846d860 Mon Sep 17 00:00:00 2001 From: Dale Johannesen Date: Fri, 22 Feb 2008 17:49:45 +0000 Subject: Pass alignment on ByVal parameters, from FE, all the way through. It is now used for codegen. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47484 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Instructions.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include/llvm/Instructions.h') diff --git a/include/llvm/Instructions.h b/include/llvm/Instructions.h index b6d5de0..8321d6f 100644 --- a/include/llvm/Instructions.h +++ b/include/llvm/Instructions.h @@ -941,6 +941,9 @@ public: /// @brief Determine whether the call or the callee has the given attribute. bool paramHasAttr(uint16_t i, unsigned attr) const; + /// @brief Extract the alignment for a call or parameter (0=unknown). + uint16_t getParamAlignment(uint16_t i) const; + /// @brief Determine if the call does not access memory. bool doesNotAccessMemory() const; @@ -1738,6 +1741,9 @@ public: /// @brief Determine whether the call or the callee has the given attribute. bool paramHasAttr(uint16_t i, ParameterAttributes attr) const; + /// @brief Extract the alignment for a call or parameter (0=unknown). + uint16_t getParamAlignment(uint16_t i) const; + /// @brief Determine if the call does not access memory. bool doesNotAccessMemory() const; -- cgit v1.1