diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-03-15 20:44:11 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-03-15 20:44:11 +0000 |
commit | 990d19fd6d925da5856de50fd84d8656e762b83c (patch) | |
tree | 78a21bfb29c4d0d4f10900714b098fb437695125 /sim/bfin/Makefile.in | |
parent | 227d265839dcb5f90383a23e36dc7d0a5df62075 (diff) | |
download | binutils-gdb-990d19fd6d925da5856de50fd84d8656e762b83c.tar.gz |
sim: bfin: fix brace style
Diffstat (limited to 'sim/bfin/Makefile.in')
-rw-r--r-- | sim/bfin/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sim/bfin/Makefile.in b/sim/bfin/Makefile.in index 64f26d3e59c..f9f3b3b0046 100644 --- a/sim/bfin/Makefile.in +++ b/sim/bfin/Makefile.in @@ -53,7 +53,8 @@ $(srcdir)/linux-fixed-code.h: $(srcdir)/linux-fixed-code.s Makefile.in $(AS_FOR_TARGET) $< -o linux-fixed-code.o ( set -e; \ echo "/* DO NOT EDIT: Autogenerated from linux-fixed-code.s. */"; \ - echo "static const unsigned char bfin_linux_fixed_code[] = {"; \ + echo "static const unsigned char bfin_linux_fixed_code[] ="; \ + echo "{"; \ $(OBJDUMP_FOR_TARGET) -d -z linux-fixed-code.o > $@.dis; \ sed -n $@.dis \ -e 's:^[^ ]* :0x:' \ |