You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.127
Former-commit-id: 629e9b4e0300274209c1265fde8922ecbc21ec1f
This commit is contained in:
parent
e79aa3c0ed
commit
02ac915603
@@ -179,9 +179,9 @@ arm_get_disp (void *p, void *target)
|
||||
}
|
||||
|
||||
// 0b00101 == 0x5
|
||||
#define arm_b(p, target) arm_emit (p, (0x0 << 31) | (0x5 << 26) | ((arm_get_disp ((p), (target)) << 0)))
|
||||
#define arm_b(p, target) do { if ((target)) g_assert (arm_is_bl_disp ((p), (target))); arm_emit (p, (0x0 << 31) | (0x5 << 26) | ((arm_get_disp ((p), (target)) << 0))); } while (0)
|
||||
|
||||
#define arm_bl(p, target) arm_emit (p, (0x1 << 31) | (0x5 << 26) | ((arm_get_disp ((p), (target)) << 0)))
|
||||
#define arm_bl(p, target) do { if ((target)) g_assert (arm_is_bl_disp ((p), (target))); arm_emit (p, (0x1 << 31) | (0x5 << 26) | ((arm_get_disp ((p), (target)) << 0))); } while (0)
|
||||
|
||||
/* Conditional branch */
|
||||
|
||||
|
||||
@@ -824,7 +824,7 @@ EXTRA_DIST = TestDriver.cs \
|
||||
Makefile.am.in
|
||||
|
||||
version.h: Makefile
|
||||
echo "#define FULL_VERSION \"Stable 4.6.0.125/753c323\"" > version.h
|
||||
echo "#define FULL_VERSION \"Stable 4.6.0.127/0cb79a3\"" > version.h
|
||||
|
||||
# Utility target for patching libtool to speed up linking
|
||||
patch-libtool:
|
||||
|
||||
@@ -824,7 +824,7 @@ EXTRA_DIST = TestDriver.cs \
|
||||
Makefile.am.in
|
||||
|
||||
version.h: Makefile
|
||||
echo "#define FULL_VERSION \"Stable 4.6.0.125/753c323\"" > version.h
|
||||
echo "#define FULL_VERSION \"Stable 4.6.0.127/0cb79a3\"" > version.h
|
||||
|
||||
# Utility target for patching libtool to speed up linking
|
||||
patch-libtool:
|
||||
|
||||
@@ -1 +1 @@
|
||||
71c5e3fdd431e30c6d5eedf283e135042d27ed72
|
||||
c1e1b34c9105e7efd98ab45e605956855423163d
|
||||
@@ -1 +1 @@
|
||||
#define FULL_VERSION "Stable 4.6.0.125/753c323"
|
||||
#define FULL_VERSION "Stable 4.6.0.127/0cb79a3"
|
||||
|
||||
Reference in New Issue
Block a user