Skip to content

Commit

Permalink
Reword LLVM support bounds to be consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsmeding committed Jul 15, 2024
1 parent 33f997b commit 4b3d75b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Text/LLVM/AST.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1005,12 +1005,12 @@ data AtomicRWOp
| AtomicMin
| AtomicUMax
| AtomicUMin
| AtomicFAdd -- ^ LLVM >= 9
| AtomicFSub -- ^ LLVM >= 9
| AtomicFMax -- ^ LLVM >= 15
| AtomicFMin -- ^ LLVM >= 15
| AtomicUIncWrap -- ^ LLVM >= 16
| AtomicUDecWrap -- ^ LLVM >= 16
| AtomicFAdd -- ^ Introduced in LLVM 9
| AtomicFSub -- ^ Introduced in LLVM 9
| AtomicFMax -- ^ Introduced in LLVM 15
| AtomicFMin -- ^ Introduced in LLVM 15
| AtomicUIncWrap -- ^ Introduced in LLVM 16
| AtomicUDecWrap -- ^ Introduced in LLVM 16
deriving (Data, Eq, Enum, Generic, Ord, Show, Typeable)

data AtomicOrdering
Expand Down

0 comments on commit 4b3d75b

Please sign in to comment.