Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
khatchad committed Feb 2, 2024
1 parent 8047bb9 commit 923c049
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -293,11 +293,9 @@ private static boolean processInstructionInterprocedurally(
* @param du The {@link DefUse} for the containing {@link CGNode}.
* @return True iff the definition of the given {@link EachElementGetInstruction} is non-scalar.
*/
private static boolean definitionIsNonScalar(
SSAInstruction instruction, DefUse du) {
private static boolean definitionIsNonScalar(SSAInstruction instruction, DefUse du) {
int def = instruction.getDef();
logger.fine(
"Processing definition: " + def + " of instruction: " + instruction + ".");
logger.fine("Processing definition: " + def + " of instruction: " + instruction + ".");

int numberOfUses = du.getNumberOfUses(def);
logger.fine(
Expand Down

0 comments on commit 923c049

Please sign in to comment.