Regenerate code to ignore some unmarshaling errors

The generated code ignores value errors in command and algorithm IDs
when unmarshaling TPM command parameters.

BUG=chrome-os-partner:44608
TEST=to tests listed in https://goo.gl/ziOdWS do not fail any more

Change-Id: I0af1a281b2ccc6808ff4e24ca0798f8d98e99326
Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Reviewed-on: https://chromium-review.googlesource.com/305497
Reviewed-by: Utkarsh Sanghi <usanghi@chromium.org>
diff --git a/Marshal_PolicyCommandCode.c b/Marshal_PolicyCommandCode.c
index 96a30e9..4a83649 100644
--- a/Marshal_PolicyCommandCode.c
+++ b/Marshal_PolicyCommandCode.c
@@ -15,7 +15,7 @@
   // Get request handles from request_handles array.
   target->policySession = request_handles[0];
   // Unmarshal request parameters.
-  result = TPM_CC_Unmarshal(&target->code, buffer, size);
+  result = UINT32_Unmarshal(&target->code, buffer, size);
   if (result != TPM_RC_SUCCESS) {
     return result;
   }