diff options
Diffstat (limited to 'gdb/i387-tdep.c')
-rw-r--r-- | gdb/i387-tdep.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gdb/i387-tdep.c b/gdb/i387-tdep.c index 04b43df..ef4add6 100644 --- a/gdb/i387-tdep.c +++ b/gdb/i387-tdep.c @@ -304,8 +304,8 @@ i387_register_to_value (struct frame_info *frame, int regnum, /* We only support floating-point values. */ if (TYPE_CODE (type) != TYPE_CODE_FLT) { - warning ("Cannot convert floating-point register value " - "to non-floating-point type."); + warning (_("Cannot convert floating-point register value " + "to non-floating-point type.")); return; } @@ -329,8 +329,8 @@ i387_value_to_register (struct frame_info *frame, int regnum, /* We only support floating-point values. */ if (TYPE_CODE (type) != TYPE_CODE_FLT) { - warning ("Cannot convert non-floating-point type " - "to floating-point register value."); + warning (_("Cannot convert non-floating-point type " + "to floating-point register value.")); return; } |