Python points-to: Fix ordering of string constants.

This commit is contained in:
Mark Shannon
2019-05-29 14:33:29 +01:00
parent 7181a025f8
commit 1ed3e5d9bc
2 changed files with 2 additions and 3 deletions

View File

@@ -1318,9 +1318,9 @@ module Expressions {
or
val.strValue() < other.strValue() and result = -1
or
val.strValue() > other.strValue() and result = 0
val.strValue() > other.strValue() and result = 1
or
val.strValue() = other.strValue() and result = 1
val.strValue() = other.strValue() and result = 0
}
pragma [nomagic]

View File

@@ -1,4 +1,3 @@
| 2 | bool False |
| 2 | bool True |
| 3 | bool False |
| 6 | bool True |