Disjoint Life Area of Temporary Variable (DLATV)

Description:

DLATV detects if the same temporary variable is used for several different purposes.

Example:

int index = base + offs;
System.out.println(arr[index]);
for (index = 0; index < array.length; index++) {
    arr[index] = 0;
}