diff options
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAG.h')
| -rw-r--r-- | include/llvm/CodeGen/SelectionDAG.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/CodeGen/SelectionDAG.h b/include/llvm/CodeGen/SelectionDAG.h index 6e9a239..994f66c 100644 --- a/include/llvm/CodeGen/SelectionDAG.h +++ b/include/llvm/CodeGen/SelectionDAG.h @@ -574,9 +574,10 @@ public: void dump() const; /// CreateStackTemporary - Create a stack temporary, suitable for holding the - /// specified value type. - SDOperand CreateStackTemporary(MVT VT); - + /// specified value type. If minAlign is specified, the slot size will have + /// at least that alignment. + SDOperand CreateStackTemporary(MVT VT, unsigned minAlign = 0); + /// FoldSetCC - Constant fold a setcc to true or false. SDOperand FoldSetCC(MVT VT, SDOperand N1, SDOperand N2, ISD::CondCode Cond); |
