forked from OSchip/llvm-project
Add a polygen rule that reflects the fact that nsw and nuw can be
used together in either order. llvm-svn: 102983
This commit is contained in:
parent
0e79c864c3
commit
7d5d5b9065
llvm/utils
|
@ -398,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
|
||||
|
|
Loading…
Reference in New Issue