diff options
author | Dale Johannesen <dalej@apple.com> | 2008-09-25 20:47:45 +0000 |
---|---|---|
committer | Dale Johannesen <dalej@apple.com> | 2008-09-25 20:47:45 +0000 |
commit | c08a0e2f7ceaaaef071ba0aa2482a8fd7a6e27a3 (patch) | |
tree | 47df050f4b38ba844ed9163b55ac45fbf4b71a67 /include/llvm/CodeGen | |
parent | 7bf6e5c674cb038d3d09af06d2bee9e8d6153966 (diff) | |
download | external_llvm-c08a0e2f7ceaaaef071ba0aa2482a8fd7a6e27a3.zip external_llvm-c08a0e2f7ceaaaef071ba0aa2482a8fd7a6e27a3.tar.gz external_llvm-c08a0e2f7ceaaaef071ba0aa2482a8fd7a6e27a3.tar.bz2 |
Accept 'inreg' attribute on x86 functions as
meaning sse_regparm (i.e. float/double values go
in XMM0 instead of ST0). Update documentation
to reflect reality.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56619 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index 0468669..111d3f8 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -480,8 +480,8 @@ namespace ISD { // RET - Return from function. The first operand is the chain, // and any subsequent operands are pairs of return value and return value - // signness for the function. This operation can have variable number of - // operands. + // attributes (see CALL for description of attributes) for the function. + // This operation can have variable number of operands. RET, // INLINEASM - Represents an inline asm block. This node always has two |