summaryrefslogtreecommitdiffstats
path: root/meta-microblaze/recipes-devtools/binutils/binutils/0009-Patch-Microblaze-fixed-bug-in-GCC-so-that-It-will-su.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-microblaze/recipes-devtools/binutils/binutils/0009-Patch-Microblaze-fixed-bug-in-GCC-so-that-It-will-su.patch')
-rw-r--r--meta-microblaze/recipes-devtools/binutils/binutils/0009-Patch-Microblaze-fixed-bug-in-GCC-so-that-It-will-su.patch37
1 files changed, 0 insertions, 37 deletions
diff --git a/meta-microblaze/recipes-devtools/binutils/binutils/0009-Patch-Microblaze-fixed-bug-in-GCC-so-that-It-will-su.patch b/meta-microblaze/recipes-devtools/binutils/binutils/0009-Patch-Microblaze-fixed-bug-in-GCC-so-that-It-will-su.patch
deleted file mode 100644
index ec3ee897..00000000
--- a/meta-microblaze/recipes-devtools/binutils/binutils/0009-Patch-Microblaze-fixed-bug-in-GCC-so-that-It-will-su.patch
+++ /dev/null
@@ -1,37 +0,0 @@
1From 81fc7ef231ca2890dfa827b4e8f3d0da107f9be2 Mon Sep 17 00:00:00 2001
2From: Mahesh Bodapati <mbodapat@xilinx.com>
3Date: Fri, 29 Sep 2017 18:00:23 +0530
4Subject: [PATCH 09/34] [Patch,Microblaze]: fixed bug in GCC so that It will
5 support .long 0U and .long 0u
6
7Upstream-Status: Pending
8
9Signed-off-by: Mark Hatle <mark.hatle@amd.com>
10
11---
12 gas/expr.c | 9 +++++++++
13 1 file changed, 9 insertions(+)
14
15diff --git a/gas/expr.c b/gas/expr.c
16index 6ad8bee2733..a1281ef71a8 100644
17--- a/gas/expr.c
18+++ b/gas/expr.c
19@@ -832,6 +832,15 @@ operand (expressionS *expressionP, enum expr_mode mode)
20 break;
21 }
22 }
23+ if ((*input_line_pointer == 'U') || (*input_line_pointer == 'u'))
24+ {
25+ input_line_pointer--;
26+
27+ integer_constant ((NUMBERS_WITH_SUFFIX || flag_m68k_mri)
28+ ? 0 : 10,
29+ expressionP);
30+ break;
31+ }
32 c = *input_line_pointer;
33 switch (c)
34 {
35--
362.37.1 (Apple Git-137.1)
37