summaryrefslogtreecommitdiffstats
path: root/openmp/runtime/src/kmp_debugger.cpp
diff options
context:
space:
mode:
authorJonathan Peyton <jonathan.l.peyton@intel.com>2017-09-27 20:36:27 +0000
committerJonathan Peyton <jonathan.l.peyton@intel.com>2017-09-27 20:36:27 +0000
commitbd3a7633f19365cb7ac24d6bc646d5547b734fc0 (patch)
tree4ccb4aca6cc9ffea3deafb883f5407a4ae9567bd /openmp/runtime/src/kmp_debugger.cpp
parentc16a47296606d41a5fb432ae1c978fd77ac9f511 (diff)
downloadbcm5719-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.cpp6
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;
;
OpenPOWER on IntegriCloud