Skip to content

Commit d64a9f5

Browse files
committed
Fix an issue caused by an incorrect type construcion.
The tuple _value_ constructor was being used instead of the tuple _type_ constructor, which was causing an ill-typed term to be emitted. Fixes #1119
1 parent 67747b5 commit d64a9f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/SAWScript/Crucible/LLVM/Override.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1231,7 +1231,7 @@ typeToSC sc t =
12311231
scVecType sc n ty'
12321232
Crucible.Struct fields ->
12331233
do fields' <- V.toList <$> traverse (typeToSC sc . view Crucible.fieldVal) fields
1234-
scTuple sc fields'
1234+
scTupleType sc fields'
12351235

12361236
------------------------------------------------------------------------
12371237

0 commit comments

Comments
 (0)