diff options
author | Tom McLaughlin <tmclaugh@FreeBSD.org> | 2006-04-23 19:57:11 +0000 |
---|---|---|
committer | Tom McLaughlin <tmclaugh@FreeBSD.org> | 2006-04-23 19:57:11 +0000 |
commit | c93f29a1073ad288d9654b428ab329fe2571a483 (patch) | |
tree | 657473b279eb675d51b68223f675f54327a9e412 /lang/mono/files/patch-mono_mini_mini-amd64.c | |
parent | fix oss support (diff) |
- Update to 1.1.13.6
Changelog: http://go-mono.com/archive/1.1.13.5/
- Fix my MASTER_SITE_SUBDIR
- Fix pthread usage when running unit tests.
- portlint
I had said on the BSD# mailing list that I would probably enable amd64
in the port but I'm holding off on that until some EM64T issues are
tracked down.
[1] http://forge.novell.com/pipermail/bsd-sharp-list/2006-April/000813.html
[2] http://forge.novell.com/pipermail/bsd-sharp-list/2006-April/000815.html
Notes
Notes:
svn path=/head/; revision=160251
Diffstat (limited to 'lang/mono/files/patch-mono_mini_mini-amd64.c')
-rw-r--r-- | lang/mono/files/patch-mono_mini_mini-amd64.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lang/mono/files/patch-mono_mini_mini-amd64.c b/lang/mono/files/patch-mono_mini_mini-amd64.c index 4981363a8f90..f1c43609d4b8 100644 --- a/lang/mono/files/patch-mono_mini_mini-amd64.c +++ b/lang/mono/files/patch-mono_mini_mini-amd64.c @@ -1,14 +1,14 @@ ---- mono/mini/mini-amd64.c.orig Sun Oct 30 14:33:12 2005 -+++ mono/mini/mini-amd64.c Sun Nov 13 18:39:16 2005 -@@ -13,6 +13,7 @@ - #include "mini.h" +--- mono/mini/mini-amd64.c.orig Mon Mar 13 17:57:59 2006 ++++ mono/mini/mini-amd64.c Tue Apr 4 21:21:37 2006 +@@ -14,6 +14,7 @@ #include <string.h> #include <math.h> + #include <unistd.h> +#include <ucontext.h> #include <mono/metadata/appdomain.h> #include <mono/metadata/debug-helpers.h> -@@ -49,6 +49,10 @@ +@@ -57,6 +58,10 @@ #define ARGS_OFFSET 16 #define GP_SCRATCH_REG AMD64_R11 @@ -19,7 +19,7 @@ /* * AMD64 register usage: * - callee saved registers are used for global register allocation -@@ -4639,6 +4643,7 @@ +@@ -4717,6 +4722,7 @@ #define IS_REX(inst) (((inst) >= 0x40) && ((inst) <= 0x4f)) @@ -27,7 +27,7 @@ static int reg_to_ucontext_reg [] = { REG_RAX, REG_RCX, REG_RDX, REG_RBX, REG_RSP, REG_RBP, REG_RSI, REG_RDI, REG_R8, REG_R9, REG_R10, REG_R11, REG_R12, REG_R13, REG_R14, REG_R15, -@@ -4650,27 +4655,37 @@ +@@ -4728,27 +4734,37 @@ * integer overflow. */ gboolean |