Merge "Relax APF version check in ApfGenerator"

This commit is contained in:
Bernie Innocenti
2018-03-30 07:25:08 +00:00
committed by Gerrit Code Review

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) {