Handle the case of a tail recursion in which the tail call is followed
[oota-llvm.git] / utils / llvm.grm
index 86a707a925d90a4bb12c23c995a114dcf0f62390..fa0dcd1e1520ccddf80d0aeb5d71dfdd6a5179e7 100644 (file)
@@ -162,6 +162,7 @@ FuncAttr      ::= noreturn
  | readnone
  | readonly
  | inlinehint
+ | alignstack
  | noinline
  | alwaysinline
  | optsize
@@ -397,7 +398,7 @@ OptVolatile ::= - volatile | _ ;
 OptExact ::= - exact | _ ;
 OptNSW ::= - nsw | _ ;
 OptNUW ::= - nuw | _ ;
-OptNW  ::= OptNUW OptNSW ;
+OptNW  ::= OptNUW OptNSW | OptNSW OptNUW ;
 OptInBounds  ::= - inbounds | _ ;
 
 MemoryInst ::= malloc Types OptCAlign