Chromium Code Reviews| Index: src/ia32/cpu-ia32.cc |
| diff --git a/src/ia32/cpu-ia32.cc b/src/ia32/cpu-ia32.cc |
| index 77ff169b52bd1758ba5f9dab860d33e0ff9139ff..5fb04fc727282324a3ce103835939870010e5b7d 100644 |
| --- a/src/ia32/cpu-ia32.cc |
| +++ b/src/ia32/cpu-ia32.cc |
| @@ -72,20 +72,6 @@ void CPU::FlushICache(void* start, size_t size) { |
| #endif |
| } |
| - |
| -void CPU::DebugBreak() { |
| -#ifdef _MSC_VER |
| - // To avoid Visual Studio runtime support the following code can be used |
| - // instead |
| - // __asm { int 3 } |
|
Michael Starzinger
2013/08/23 11:43:43
We could preserve these three lines of comments in
Benedikt Meurer
2013/08/23 11:50:43
Will be addressed in separate CL.
|
| - __debugbreak(); |
| -#elif defined(__native_client__) |
| - asm("hlt"); |
| -#else |
| - asm("int $3"); |
| -#endif |
| -} |
| - |
| } } // namespace v8::internal |
| #endif // V8_TARGET_ARCH_IA32 |