File tree 2 files changed +1
-19
lines changed
2 files changed +1
-19
lines changed Original file line number Diff line number Diff line change @@ -55,11 +55,4 @@ const bool HaveVFP = true;
55
55
#define AD_MD_HPP " adfiles/ad_arm_32.hpp"
56
56
#define C1_LIRGENERATOR_MD_HPP " c1_LIRGenerator_arm.hpp"
57
57
58
- #ifdef TARGET_COMPILER_gcc
59
- #ifdef ARM32
60
- #undef BREAKPOINT
61
- #define BREAKPOINT __asm__ volatile (" bkpt" )
62
- #endif
63
- #endif
64
-
65
58
#endif // CPU_ARM_GLOBALDEFINITIONS_ARM_HPP
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2017, 2019 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2017, 2020 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
25
25
#ifndef SHARE_UTILITIES_BREAKPOINT_HPP
26
26
#define SHARE_UTILITIES_BREAKPOINT_HPP
27
27
28
- // Provide BREAKPOINT macro for requesting stop in the debugger.
29
-
30
- // We presently only have one non-default definition, so it's not
31
- // worth going through the COMPILER_HEADER() dispatch, with all
32
- // non-visCPP files being empty.
33
- #ifdef TARGET_COMPILER_visCPP
34
- #ifndef _WIN64
35
- #define BREAKPOINT __asm { int 3 }
36
- #endif // _WIN64
37
- #endif // TARGET_COMPILER_visCPP
38
-
39
28
// If no more specific definition provided, default to calling a
40
29
// function that is defined per-platform. See also os::breakpoint().
41
30
#ifndef BREAKPOINT
You can’t perform that action at this time.
0 commit comments