Comment a non-obvious member variable.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107458 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Gohman 2010-07-02 01:20:16 +00:00
parent 108e3707fa
commit 9342c176a7

View File

@ -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) {}