diff options
author | Michael Meissner <gnu@the-meissners.org> | 2003-08-08 23:01:28 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 2003-08-08 23:01:28 +0000 |
commit | bc1cbaf75ae934e1140ac5911b031764f6441fc1 (patch) | |
tree | ce88f4c5e2fae79bebb82c1e75912c61fae3fa1e | |
parent | 3be52b3aae7cfe2dc0b563de4ff823ec2695f497 (diff) | |
download | gdb-bc1cbaf75ae934e1140ac5911b031764f6441fc1.tar.gz |
Fix typos in last change
-rw-r--r-- | opcodes/cgen-ibld.in | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/opcodes/cgen-ibld.in b/opcodes/cgen-ibld.in index 5cf57848c5d..316f183c41e 100644 --- a/opcodes/cgen-ibld.in +++ b/opcodes/cgen-ibld.in @@ -78,7 +78,9 @@ static CGEN_INLINE long extract_1 static CGEN_INLINE void insert_1 (CGEN_CPU_DESC cd, unsigned long value, - int start,length,word_length, + int start, + int length, + int word_length, unsigned char *bufp) { unsigned long x,mask; @@ -320,7 +322,8 @@ put_insn_int_value (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED, static CGEN_INLINE int fill_cache (CGEN_CPU_DESC cd ATTRIBUTE_UNUSED, CGEN_EXTRACT_INFO *ex_info, - int offset, bytes, + int offset, + int bytes, bfd_vma pc) { /* It's doubtful that the middle part has already been fetched so @@ -406,7 +409,7 @@ extract_1 (CGEN_CPU_DESC cd, necessary. */ static int -extract_normal (CGEN_CPU_DESC cd; +extract_normal (CGEN_CPU_DESC cd, #if ! CGEN_INT_INSN_P CGEN_EXTRACT_INFO *ex_info, #else |