Skip to content

Commit a2c78d2

Browse files
authored
Merge pull request #366 from UQ-PAC/dsa-tests-fix
change constants to be recognized as globals
2 parents 9b8fc6e + 4b003cd commit a2c78d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/scala/IntervalDSATest.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ class IntervalDSATest extends AnyFunSuite {
8383
val V0 = Register("V0", 64)
8484
val xAddress = BitVecLiteral(2000, 64)
8585
val yAddress = BitVecLiteral(3000, 64)
86-
val xPointer = BitVecLiteral(1000, 64)
87-
val yPointer = BitVecLiteral(1008, 64)
86+
val xPointer = BitVecLiteral(1010, 64)
87+
val yPointer = BitVecLiteral(1018, 64)
8888
val globalOffsets = Map(xPointer.value -> xAddress.value, yPointer.value -> yAddress.value)
8989
val x = SpecGlobal("x", 64, None, xAddress.value)
9090
val y = SpecGlobal("y", 64, None, yAddress.value)

0 commit comments

Comments
 (0)