Commit cfb4a183 authored by sgjesse@chromium.org's avatar sgjesse@chromium.org

Fix presumbit errors in previous commit

TBR=kasperl@chromium.org
Review URL: http://codereview.chromium.org/3249001

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5360 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 6cc90047
...@@ -952,7 +952,7 @@ class DisableBreak BASE_EMBEDDED { ...@@ -952,7 +952,7 @@ class DisableBreak BASE_EMBEDDED {
// code. // code.
class Debug_Address { class Debug_Address {
public: public:
Debug_Address(Debug::AddressId id) : id_(id) { } explicit Debug_Address(Debug::AddressId id) : id_(id) { }
static Debug_Address AfterBreakTarget() { static Debug_Address AfterBreakTarget() {
return Debug_Address(Debug::k_after_break_target_address); return Debug_Address(Debug::k_after_break_target_address);
......
...@@ -105,7 +105,7 @@ static void Generate_DebugBreakCallHelper(MacroAssembler* masm, ...@@ -105,7 +105,7 @@ static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
__ SmiToInteger32(reg, reg); __ SmiToInteger32(reg, reg);
__ or_(reg, kScratchRegister); __ or_(reg, kScratchRegister);
} }
} }
// Get rid of the internal frame. // Get rid of the internal frame.
__ LeaveInternalFrame(); __ LeaveInternalFrame();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment