diff options
author | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2017-09-27 20:36:27 +0000 |
---|---|---|
committer | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2017-09-27 20:36:27 +0000 |
commit | bd3a7633f19365cb7ac24d6bc646d5547b734fc0 (patch) | |
tree | 4ccb4aca6cc9ffea3deafb883f5407a4ae9567bd /openmp/runtime/src/kmp_debugger.cpp | |
parent | c16a47296606d41a5fb432ae1c978fd77ac9f511 (diff) | |
download | bcm5719-llvm-bd3a7633f19365cb7ac24d6bc646d5547b734fc0.tar.gz bcm5719-llvm-bd3a7633f19365cb7ac24d6bc646d5547b734fc0.zip |
Remove unnecessary semicolons
Removes semicolons after if {} blocks, function definitions, etc.
I was able to apply the large OMPT patch cleanly on top of this one
with no conflicts.
llvm-svn: 314340
Diffstat (limited to 'openmp/runtime/src/kmp_debugger.cpp')
-rw-r--r-- | openmp/runtime/src/kmp_debugger.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openmp/runtime/src/kmp_debugger.cpp b/openmp/runtime/src/kmp_debugger.cpp index 4394a19f1d3..c4f373ea402 100644 --- a/openmp/runtime/src/kmp_debugger.cpp +++ b/openmp/runtime/src/kmp_debugger.cpp @@ -279,10 +279,10 @@ int __kmp_omp_num_threads(ident_t const *ident) { for (i = 0; i < info->num; ++i) { if (kmp_location_match(&loc, &items[i])) { num_threads = items[i].num_threads; - }; // if - }; // for + } + } __kmp_str_loc_free(&loc); - }; // if + } return num_threads; ; |