This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH OBV] Make aarch64_zero_register_p declaration starts from column one


Patch is obvious, so I'll push it in.

include/opcode:

2015-10-02  Yao Qi  <yao.qi@linaro.org>

	* aarch64.h (aarch64_zero_register_p): Move the declaration
	to column one.
---
 include/opcode/ChangeLog | 5 +++++
 include/opcode/aarch64.h | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/include/opcode/ChangeLog b/include/opcode/ChangeLog
index a93d964..a7e9895c 100644
--- a/include/opcode/ChangeLog
+++ b/include/opcode/ChangeLog
@@ -1,5 +1,10 @@
 2015-10-02  Yao Qi  <yao.qi@linaro.org>
 
+	* aarch64.h (aarch64_zero_register_p): Move the declaration
+	to column one.
+
+2015-10-02  Yao Qi  <yao.qi@linaro.org>
+
 	* aarch64.h (aarch64_decode_insn): Declare it.
 
 2015-09-29  Dominik Vogt  <vogt@linux.vnet.ibm.com>
diff --git a/include/opcode/aarch64.h b/include/opcode/aarch64.h
index ac4da28..29be879 100644
--- a/include/opcode/aarch64.h
+++ b/include/opcode/aarch64.h
@@ -922,8 +922,8 @@ aarch64_num_of_operands (const aarch64_opcode *);
 extern int
 aarch64_stack_pointer_p (const aarch64_opnd_info *);
 
-extern
-int aarch64_zero_register_p (const aarch64_opnd_info *);
+extern int
+aarch64_zero_register_p (const aarch64_opnd_info *);
 
 extern int
 aarch64_decode_insn (aarch64_insn, aarch64_inst *);
-- 
1.9.1


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]