| Index: src/ic-inl.h
|
| ===================================================================
|
| --- src/ic-inl.h (revision 1738)
|
| +++ src/ic-inl.h (working copy)
|
| @@ -39,6 +39,7 @@
|
| // Get the address of the call.
|
| Address result = pc() - Assembler::kTargetAddrToReturnAddrDist;
|
|
|
| +#ifdef ENABLE_DEBUGGER_SUPPORT
|
| // First check if any break points are active if not just return the address
|
| // of the call.
|
| if (!Debug::has_break_points()) return result;
|
| @@ -55,6 +56,9 @@
|
| // No break point here just return the address of the call.
|
| return result;
|
| }
|
| +#else
|
| + return result;
|
| +#endif
|
| }
|
|
|
|
|
|
|