Revert "Verify that debug start and end point instructions are in the user set."
This reverts commit 57d2643b4d9a94d7e9d98d8e8744ecd187c570d8.
Reason for revert: test failures
Change-Id: I81d923d258812734fbc27d86cff2523aca04263f
diff --git a/src/main/java/com/android/tools/r8/ir/code/IRCode.java b/src/main/java/com/android/tools/r8/ir/code/IRCode.java
index c64d5d6..21ed16e 100644
--- a/src/main/java/com/android/tools/r8/ir/code/IRCode.java
+++ b/src/main/java/com/android/tools/r8/ir/code/IRCode.java
@@ -220,12 +220,6 @@
assert verifyPhi(phiUser);
assert phiUser.getDebugValues().contains(value);
}
- for (Instruction instruction : value.getDebugLocalStarts()) {
- assert value.debugUsers().contains(instruction);
- }
- for (Instruction instruction : value.getDebugLocalEnds()) {
- assert value.debugUsers().contains(instruction);
- }
}
return true;
}