summaryrefslogtreecommitdiffstats
path: root/compiler-rt/lib/xray/xray_init.cc
diff options
context:
space:
mode:
authorDean Michael Berris <dberris@google.com>2017-02-07 23:35:34 +0000
committerDean Michael Berris <dberris@google.com>2017-02-07 23:35:34 +0000
commitea9042cf8fab1fff5364793ec11affba42d8f08f (patch)
tree1e79eb850aee998cbe2f94377537ac708644883b /compiler-rt/lib/xray/xray_init.cc
parentbc9d0cd92528860f4772fdfa3648943ced04fb34 (diff)
downloadbcm5719-llvm-ea9042cf8fab1fff5364793ec11affba42d8f08f.tar.gz
bcm5719-llvm-ea9042cf8fab1fff5364793ec11affba42d8f08f.zip
[XRay][compiler-rt][NFC] Turn ProudCase functions to humbleCase functions
Summary: As pointed out in casual reading of the XRay codebase, that we had some interesting named functions that didn't quite follow the LLVM coding conventions. Reviewers: chandlerc, dblaikie Subscribers: llvm-commits Differential Revision: https://reviews.llvm.org/D29625 llvm-svn: 294373
Diffstat (limited to 'compiler-rt/lib/xray/xray_init.cc')
-rw-r--r--compiler-rt/lib/xray/xray_init.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/xray/xray_init.cc b/compiler-rt/lib/xray/xray_init.cc
index eb86182910c..9d012e9a608 100644
--- a/compiler-rt/lib/xray/xray_init.cc
+++ b/compiler-rt/lib/xray/xray_init.cc
@@ -46,7 +46,7 @@ std::atomic<__xray::XRaySledMap> XRayInstrMap{};
// __xray_init() will do the actual loading of the current process' memory map
// and then proceed to look for the .xray_instr_map section/segment.
void __xray_init() XRAY_NEVER_INSTRUMENT {
- InitializeFlags();
+ initializeFlags();
if (__start_xray_instr_map == nullptr) {
Report("XRay instrumentation map missing. Not initializing XRay.\n");
return;
OpenPOWER on IntegriCloud