static_inst.cc (7109:6670b4ab3abe) static_inst.cc (7111:ee902ae075bb)
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

333 os << "gt";
334 break;
335 case COND_LE:
336 os << "le";
337 break;
338 case COND_AL:
339 // This one is implicit.
340 break;
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

333 os << "gt";
334 break;
335 case COND_LE:
336 os << "le";
337 break;
338 case COND_AL:
339 // This one is implicit.
340 break;
341 case COND_NV:
342 os << "nv";
341 case COND_UC:
342 // Unconditional.
343 break;
344 default:
345 panic("Unrecognized condition code %d.\n", condCode);
346 }
347 os << suffix << " ";
348 }
349}
350

--- 108 unchanged lines hidden ---
343 break;
344 default:
345 panic("Unrecognized condition code %d.\n", condCode);
346 }
347 os << suffix << " ";
348 }
349}
350

--- 108 unchanged lines hidden ---