Skip to content

Commit 3ec08f6

Browse files
committed
Merge branch 'master' into 267-initial-tensor-dimensions-arent-always-accurate
2 parents 84afd02 + a16af64 commit 3ec08f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

com.ibm.wala.cast.python.ml/source/com/ibm/wala/cast/python/ml/client/PythonTensorAnalysisEngine.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,12 +168,12 @@ private static Set<PointsToSetVariable> getDataflowSources(
168168
int objectRef = propertyRead.getObjectRef();
169169
SSAInstruction def = du.getDef(objectRef);
170170

171-
if (def == null) {
171+
if (def == null)
172172
// definition is unavailable from the local DefUse. Use interprocedural analysis using
173173
// the PA.
174174
processInstructionInterprocedurally(
175175
propertyRead, objectRef, localPointerKeyNode, src, sources, pointerAnalysis);
176-
} else if (def instanceof EachElementGetInstruction
176+
else if (def instanceof EachElementGetInstruction
177177
|| def instanceof PythonPropertyRead
178178
|| def instanceof PythonInvokeInstruction) {
179179
boolean added = false;

0 commit comments

Comments
 (0)