Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in data constructor #60

Merged
merged 2 commits into from
Jan 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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