diff options
| author | Hal Finkel <hfinkel@anl.gov> | 2016-05-27 19:04:05 +0000 |
|---|---|---|
| committer | Hal Finkel <hfinkel@anl.gov> | 2016-05-27 19:04:05 +0000 |
| commit | 49bee007d09a9efa40f22a144d83eec9dabd59b2 (patch) | |
| tree | 73ba340eaaec71400bd1edf0e05aa8d3b53a0cba | |
| parent | 6fff9dc932a708d0a5c78073e855f94990bffffc (diff) | |
| download | bcm5719-llvm-49bee007d09a9efa40f22a144d83eec9dabd59b2.tar.gz bcm5719-llvm-49bee007d09a9efa40f22a144d83eec9dabd59b2.zip | |
Fix storing the frame pointer for OMP-T during ppc64 microtask dispatch
Thanks to John Mellor-Crummey for reporting the omission.
llvm-svn: 271035
| -rw-r--r-- | openmp/runtime/src/z_Linux_asm.s | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/openmp/runtime/src/z_Linux_asm.s b/openmp/runtime/src/z_Linux_asm.s index 128379ee8b0..60130a4c0ef 100644 --- a/openmp/runtime/src/z_Linux_asm.s +++ b/openmp/runtime/src/z_Linux_asm.s @@ -1661,6 +1661,7 @@ __kmp_invoke_microtask: # if OMPT_SUPPORT .cfi_offset r30, -16 std 30, -16(31) + std 1, 0(8) mr 30, 8 # endif |

