diff options
author | Hal Finkel <hfinkel@anl.gov> | 2014-07-16 21:22:46 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2014-07-16 21:22:46 +0000 |
commit | c8491d3d838c3bbc272bf80cb0d0d8e5c0bbab3e (patch) | |
tree | 950cf69f8974811fdf4053a85bff9775389a4d36 | |
parent | a1bce2ef1a2007c608d4a6948dd9aa991fd155df (diff) | |
download | bcm5719-llvm-c8491d3d838c3bbc272bf80cb0d0d8e5c0bbab3e.tar.gz bcm5719-llvm-c8491d3d838c3bbc272bf80cb0d0d8e5c0bbab3e.zip |
Fix a typo in the inalloca description
llvm-svn: 213200
-rw-r--r-- | llvm/docs/LangRef.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index a6276418baf..17bc352f1c8 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -891,7 +891,7 @@ Currently, only the following parameter attributes are defined: address of outgoing stack arguments. An ``inalloca`` argument must be a pointer to stack memory produced by an ``alloca`` instruction. The alloca, or argument allocation, must also be tagged with the - inalloca keyword. Only the past argument may have the ``inalloca`` + inalloca keyword. Only the last argument may have the ``inalloca`` attribute, and that argument is guaranteed to be passed in memory. An argument allocation may be used by a call at most once because |