Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
bristermitten committed May 4, 2024
1 parent 2b9ef06 commit 09f0cd6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion h2jvm.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ name: h2jvm
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.5.4.6
version: 0.5.4.7

-- A short (one-line) description of the package.
synopsis:
Expand Down
2 changes: 1 addition & 1 deletion src/JVM/Data/Abstract/Instruction.hs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ data Instruction' label
| PutStatic ClassInfoType Text FieldType
| GetField ClassInfoType Text FieldType
| GetStatic ClassInfoType Text FieldType
| PutField ClassInfoType Text FieldType
| PutField ClassInfoType Text FieldType
| Goto label
| CheckCast ClassInfoType
| Return
Expand Down
2 changes: 1 addition & 1 deletion src/JVM/Data/Analyse/StackMap.hs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ analyseBlockDiff current block = foldl' (flip analyseInstruction) current (takeW
analyseInstruction (PutStatic{}) ba = ba{stack = tail ba.stack}
analyseInstruction (GetField _ _ ft) ba = ba{stack = StackEntry ft : tail ba.stack}
analyseInstruction (GetStatic _ _ ft) ba = ba{stack = StackEntry ft : ba.stack}
analyseInstruction (PutField {}) ba = ba{stack = tail $ tail ba.stack}
analyseInstruction (PutField{}) ba = ba{stack = tail $ tail ba.stack}
analyseInstruction (Goto _) ba = ba
analyseInstruction (LDC l) ba = ba{stack = StackEntry (ldcEntryToFieldType l) : ba.stack}

Expand Down

0 comments on commit 09f0cd6

Please sign in to comment.