diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-05-11 01:08:39 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-05-11 01:08:39 +0000 |
commit | 1cfac8c5348e5f079b3f8e04397c753524a34fb8 (patch) | |
tree | d02f6f2d322a2eebb7b02ca6fdbfc0c2a229a322 /include | |
parent | 7e20a574eb3f4fc3840a0490c814443d756e2e0e (diff) | |
download | external_llvm-1cfac8c5348e5f079b3f8e04397c753524a34fb8.zip external_llvm-1cfac8c5348e5f079b3f8e04397c753524a34fb8.tar.gz external_llvm-1cfac8c5348e5f079b3f8e04397c753524a34fb8.tar.bz2 |
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@131173 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/CodeGen/ISDOpcodes.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/ISDOpcodes.h b/include/llvm/CodeGen/ISDOpcodes.h index f0de936..e765cad 100644 --- a/include/llvm/CodeGen/ISDOpcodes.h +++ b/include/llvm/CodeGen/ISDOpcodes.h @@ -107,11 +107,11 @@ namespace ISD { // and returns an outchain. EH_SJLJ_LONGJMP, - // OUTCHAIN = EH_SJLJ_DISPATCHSETUP(INCHAIN, context) + // OUTCHAIN = EH_SJLJ_DISPATCHSETUP(INCHAIN, setjmpval) // This corresponds to the eh.sjlj.dispatchsetup intrinsic. It takes an - // input chain and a pointer to the sjlj function context as inputs and - // returns an outchain. By default, this does nothing. Targets can lower - // this to unwind setup code if needed. + // input chain and the value returning from setjmp as inputs and returns an + // outchain. By default, this does nothing. Targets can lower this to unwind + // setup code if needed. EH_SJLJ_DISPATCHSETUP, // TargetConstant* - Like Constant*, but the DAG does not do any folding, |