Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(699)

Side by Side Diff: src/arm/virtual-frame-arm.cc

Issue 1652015: Fix arm simulator build on Max OS X. For some reason the GCC version... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/arm/virtual-frame-arm.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2009 the V8 project authors. All rights reserved. 1 // Copyright 2009 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 break; 500 break;
501 case R0_R1_TOS: 501 case R0_R1_TOS:
502 masm()->push(r1); 502 masm()->push(r1);
503 // Fall through. 503 // Fall through.
504 case R0_TOS: 504 case R0_TOS:
505 masm()->push(r0); 505 masm()->push(r0);
506 top_of_stack_state_ = NO_TOS_REGISTERS; 506 top_of_stack_state_ = NO_TOS_REGISTERS;
507 // Fall through. 507 // Fall through.
508 case NO_TOS_REGISTERS: 508 case NO_TOS_REGISTERS:
509 break; 509 break;
510 default:
511 UNREACHABLE();
512 break;
510 } 513 }
511 ASSERT(register_allocation_map_ == 0); // Not yet implemented. 514 ASSERT(register_allocation_map_ == 0); // Not yet implemented.
512 } 515 }
513 516
514 #undef __ 517 #undef __
515 518
516 } } // namespace v8::internal 519 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/arm/virtual-frame-arm.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698