x86 trampoline macro missing a stack pop for exception case.

This fixes 003-omnibus, though there are still failures in run-test.

Change-Id: I5a44b4731979aa4aa7537696ebb2d75d4dfef62b
diff --git a/src/oat/runtime/x86/runtime_support_x86.S b/src/oat/runtime/x86/runtime_support_x86.S
index 8cc7e58..74ae8fcc 100644
--- a/src/oat/runtime/x86/runtime_support_x86.S
+++ b/src/oat/runtime/x86/runtime_support_x86.S
@@ -261,6 +261,7 @@
     // Tail call to intended method.
     ret
 1:
+    addl MACRO_LITERAL(4), %esp   // Pop code pointer off stack
     DELIVER_PENDING_EXCEPTION
 END_MACRO