We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9208065 commit eacec22Copy full SHA for eacec22
openmp/runtime/test/ompt/callback.h
@@ -190,8 +190,8 @@ ompt_label_##id:
190
// On AArch64 the NOP instruction is 4 bytes long, can be followed by inserted
191
// store instruction (another 4 bytes long).
192
#define print_possible_return_addresses(addr) \
193
- printf("%" PRIu64 ": current_address=%p or %p\n", ompt_get_thread_data()->value, \
194
- ((char *)addr) - 4, ((char *)addr) - 8)
+ printf("%" PRIu64 ": current_address=%p or %p or %p\n", ompt_get_thread_data()->value, \
+ ((char *)addr) - 4, ((char *)addr) - 8, ((char *)addr) - 12)
195
#elif KMP_ARCH_RISCV64
196
#if __riscv_compressed
197
// On RV64GC the C.NOP instruction is 2 byte long. In addition, the compiler
0 commit comments