Skip to content

Commit

Permalink
Merge pull request #60 from robdockins/master
Browse files Browse the repository at this point in the history
Fix typo in data constructor
  • Loading branch information
langston-barrett authored Jan 11, 2019
2 parents e05cf31 + c81df7f commit 4690fa1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion llvm-pretty.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: llvm-pretty
Version: 0.10.2
Version: 0.10.3
License: BSD3
License-file: LICENSE
Author: Trevor Elliott
Expand Down
2 changes: 1 addition & 1 deletion src/Text/LLVM/AST.hs
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ data AtomicRWOp
| AtomicMax
| AtomicMin
| AtomicUMax
| AcomicUMin
| AtomicUMin
deriving (Data, Eq, Enum, Generic, Ord, Show, Typeable)

data AtomicOrdering
Expand Down
2 changes: 1 addition & 1 deletion src/Text/LLVM/PP.hs
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ ppAtomicOp AtomicXor = "xor"
ppAtomicOp AtomicMax = "max"
ppAtomicOp AtomicMin = "min"
ppAtomicOp AtomicUMax = "umax"
ppAtomicOp AcomicUMin = "umin"
ppAtomicOp AtomicUMin = "umin"

ppScope :: Maybe String -> Doc
ppScope Nothing = empty
Expand Down

0 comments on commit 4690fa1

Please sign in to comment.