svf-lib 1.0.1415 → 1.0.1417

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -139,13 +139,13 @@ public:
139
139
  return conditionVar;
140
140
  }
141
141
 
142
- s32_t getSuccessorCondValue() const
142
+ s64_t getSuccessorCondValue() const
143
143
  {
144
144
  assert(getCondition() && "this is not a conditional branch edge");
145
145
  return branchCondVal;
146
146
  }
147
147
 
148
- void setBranchCondition(const SVFValue* c, s32_t bVal)
148
+ void setBranchCondition(const SVFValue* c, s64_t bVal)
149
149
  {
150
150
  conditionVar = c;
151
151
  branchCondVal = bVal;
@@ -159,7 +159,7 @@ private:
159
159
  /// e.g., Inst1: br %cmp label 0, label 1, Inst2 is label 0 and Inst 3 is label 1;
160
160
  /// for edge between Inst1 and Inst 2, the first element is %cmp and second element is 0
161
161
  const SVFValue* conditionVar;
162
- s32_t branchCondVal;
162
+ s64_t branchCondVal;
163
163
  };
164
164
 
165
165
  /*!
@@ -1048,7 +1048,7 @@ public:
1048
1048
  {
1049
1049
  return successors.at(i).first;
1050
1050
  }
1051
- s32_t getSuccessorCondValue (u32_t i) const
1051
+ s64_t getSuccessorCondValue (u32_t i) const
1052
1052
  {
1053
1053
  return successors.at(i).second;
1054
1054
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "svf-lib",
3
- "version": "1.0.1415",
3
+ "version": "1.0.1417",
4
4
  "description": "SVF's npm support",
5
5
  "main": "index.js",
6
6
  "scripts": {