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

Change handling of global variables #97

Merged
merged 4 commits into from
Oct 4, 2018
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
25 changes: 24 additions & 1 deletion crucible-llvm/crucible-llvm.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: crucible-llvm
Version: 0.1
Version: 0.2
Author: Galois Inc.
Copyright: (c) Galois, Inc 2014-2018
Maintainer: [email protected]
Expand Down Expand Up @@ -61,7 +61,30 @@ library
Lang.Crucible.LLVM.MemModel.Value
Lang.Crucible.LLVM.MemModel.Pointer
Lang.Crucible.LLVM.MemModel.Type
Lang.Crucible.LLVM.Translation.Internal
Lang.Crucible.LLVM.Types

ghc-options: -Wall
ghc-prof-options: -O2 -fprof-auto-top


test-suite crucible-llvm-tests
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: test
-- other-modules:
build-depends:
base,
containers,
crucible,
crucible-llvm,
directory,
filepath,
llvm-pretty,
llvm-pretty-bc-parser,
mtl,
parameterized-utils,
process,
tasty,
tasty-golden,
tasty-hunit
2 changes: 2 additions & 0 deletions crucible-llvm/src/Lang/Crucible/LLVM/MemModel/Value.hs
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,10 @@ import What4.Partial

import Lang.Crucible.Backend
import qualified Lang.Crucible.LLVM.Bytes as G
import Lang.Crucible.LLVM.Extension (ArchWidth)
import qualified Lang.Crucible.LLVM.MemModel.Type as G
import Lang.Crucible.LLVM.MemModel.Pointer
import Lang.Crucible.LLVM.Translation.Constant

data FloatSize (fi :: FloatInfo) where
SingleSize :: FloatSize SingleFloat
Expand Down
Loading