Merge "Relax APF version check in ApfGenerator"

am: 51dab0ed9d

Change-Id: Id8d2d9df1e562ae15e63ba50e65ab6e67dab108c
This commit is contained in:
Bernie Innocenti
2018-03-30 09:25:47 +00:00
committed by android-build-merger

View File

@@ -367,7 +367,7 @@ public class ApfGenerator {
*/
public boolean setApfVersion(int version) {
// This version number syncs up with APF_VERSION in hardware/google/apf/apf_interpreter.h
return version == 2;
return version >= 2;
}
private void addInstruction(Instruction instruction) {