[Mono-bugs] [Bug 69622][Wis] New - [PPC] JIT doesn't handle generics

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 17 Nov 2004 15:29:42 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by grompf@sublimeintervention.com.

http://bugzilla.ximian.com/show_bug.cgi?id=69622

--- shadow/69622	2004-11-17 15:29:42.000000000 -0500
+++ shadow/69622.tmp.20127	2004-11-17 15:29:42.000000000 -0500
@@ -0,0 +1,34 @@
+Bug#: 69622
+Product: Mono: Runtime
+Version: 1.1
+OS: 
+OS Details: OSX 10.3.4
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: grompf@sublimeintervention.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: [PPC] JIT doesn't handle generics
+
+The PPC jit is currently checking types on param->type;
+
+This is causing a number of the generic(s) tests to fail; the appropriate behaviour is to call
+mono_type_get_underlying_type before the switch.
+
+Before this patch:
+mono gen-85.exe
+
+ERROR: Can't trampoline 0x15
+
+After this patch:
+mono gen-85.exe
+junglist:~/$ echo $?
+0
+
+-kangaroo