[PATCH] D141914: WIP: Unwindabort: Add "unwindabort" syntax for the "resume" instruction.

Roman Lebedev via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jan 17 05:52:13 PST 2023


lebedev.ri added inline comments.


================
Comment at: llvm/lib/AsmParser/LLParser.cpp:7396-7406
 /// parseCall
-///   ::= 'call' OptionalFastMathFlags OptionalCallingConv
-///           OptionalAttrs Type Value ParameterList OptionalAttrs
-///   ::= 'tail' 'call' OptionalFastMathFlags OptionalCallingConv
-///           OptionalAttrs Type Value ParameterList OptionalAttrs
-///   ::= 'musttail' 'call' OptionalFastMathFlags OptionalCallingConv
+///   ::= 'call' 'unwindabort'? OptionalFastMathFlags OptionalCallingConv
 ///           OptionalAttrs Type Value ParameterList OptionalAttrs
-///   ::= 'notail' 'call'  OptionalFastMathFlags OptionalCallingConv
+///   ::= 'tail' 'call' 'unwindabort'? OptionalFastMathFlags OptionalCallingConv
 ///           OptionalAttrs Type Value ParameterList OptionalAttrs
+///   ::= 'musttail' 'call' 'unwindabort'? OptionalFastMathFlags
+///           OptionalCallingConv OptionalAttrs Type Value ParameterList
----------------
This should be in the previous patch


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D141914/new/

https://reviews.llvm.org/D141914



More information about the llvm-commits mailing list