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:
Dan Gohman 2010-05-04 00:13:24 +00:00
parent 0e79c864c3
commit 7d5d5b9065
1 changed files with 1 additions and 1 deletions
llvm/utils

View File

@ -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