summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-07-02 01:20:16 +0000
committerDan Gohman <gohman@apple.com>2010-07-02 01:20:16 +0000
commit9342c176a7595228dbeb6bf9c603d5d1ba553c1c (patch)
treeb65280da91db87f574a133daa4b01f3f7536fbb9 /include/llvm/CodeGen
parent108e3707fa4df177fdfc1533ce941a50c70eef7c (diff)
downloadllvm-9342c176a7595228dbeb6bf9c603d5d1ba553c1c.tar.gz
llvm-9342c176a7595228dbeb6bf9c603d5d1ba553c1c.tar.bz2
llvm-9342c176a7595228dbeb6bf9c603d5d1ba553c1c.tar.xz
Comment a non-obvious member variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107458 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index d4aa78211f..7b8c1dcfb8 100644
--- a/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -1572,6 +1572,8 @@ namespace ISD {
struct OutputArg {
ArgFlagsTy Flags;
SDValue Val;
+
+ /// IsFixed - Is this a "fixed" value, ie not passed through a vararg "...".
bool IsFixed;
OutputArg() : IsFixed(false) {}