diff options
Diffstat (limited to 'mixlib/mix_ins.h')
| -rw-r--r-- | mixlib/mix_ins.h | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/mixlib/mix_ins.h b/mixlib/mix_ins.h index 7a4d028..1ea3f81 100644 --- a/mixlib/mix_ins.h +++ b/mixlib/mix_ins.h @@ -2,7 +2,7 @@   * This file declares types and functions for manipulating MIX   * instructions   * ------------------------------------------------------------------ - * Copyright (C) 2000, 2006, 2007 Free Software Foundation, Inc. + * Copyright (C) 2000, 2006, 2007, 2010 Free Software Foundation, Inc.   *   * This program is free software; you can redistribute it and/or modify   * it under the terms of the GNU General Public License as published by @@ -155,7 +155,7 @@ mix_word_to_ins(mix_word_t w, mix_ins_t *ins);  /* unchecked versions for speed */  #define mix_ins_to_word_uncheck(ins)					\   (mix_word_t)(((ins).address<<18)|					\ -	      (((ins).index&7)<<12)|((ins).fspec<<6)|((ins).opcode)) +	      (((ins).index)<<12)|((ins).fspec<<6)|((ins).opcode))  #define mix_word_to_ins_uncheck(word,ins)	\    do {						\ | 
