static_inst.cc (5121:a5f3cfdc4ee5) static_inst.cc (5202:ff56fa8c2091)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

--- 112 unchanged lines hidden (view full) ---

121 static const char * piFormats[9] =
122 {"", "%s", "%s", "", "e%s", "", "", "", "r%s"};
123 static const char * longFormats[9] =
124 {"", "r%sb", "r%sw", "", "r%sd", "", "", "", "r%s"};
125 static const char * microFormats[9] =
126 {"", "t%db", "t%dw", "", "t%dd", "", "", "", "t%d"};
127
128 if (reg < FP_Base_DepTag) {
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

--- 112 unchanged lines hidden (view full) ---

121 static const char * piFormats[9] =
122 {"", "%s", "%s", "", "e%s", "", "", "", "r%s"};
123 static const char * longFormats[9] =
124 {"", "r%sb", "r%sw", "", "r%sd", "", "", "", "r%s"};
125 static const char * microFormats[9] =
126 {"", "t%db", "t%dw", "", "t%dd", "", "", "", "t%d"};
127
128 if (reg < FP_Base_DepTag) {
129 char * suffix = "";
129 const char * suffix = "";
130 bool fold = reg & (1 << 6);
131 reg &= ~(1 << 6);
132
133 if(fold)
134 {
135 suffix = "h";
136 reg -= 4;
137 }

--- 93 unchanged lines hidden ---
130 bool fold = reg & (1 << 6);
131 reg &= ~(1 << 6);
132
133 if(fold)
134 {
135 suffix = "h";
136 reg -= 4;
137 }

--- 93 unchanged lines hidden ---