diff options
author | Dean Michael Berris <dberris@google.com> | 2018-06-05 06:12:42 +0000 |
---|---|---|
committer | Dean Michael Berris <dberris@google.com> | 2018-06-05 06:12:42 +0000 |
commit | 5eaaff60954f37b6db04319c4a0b65da9cd88d21 (patch) | |
tree | c1096a3591520481da89bd1fe9ed896b3b392e5c /compiler-rt/lib/xray/tests/unit/profile_collector_test.cc | |
parent | 8ba925d2c35e55a48c8817194e333c9599304a78 (diff) | |
download | bcm5719-llvm-5eaaff60954f37b6db04319c4a0b65da9cd88d21.tar.gz bcm5719-llvm-5eaaff60954f37b6db04319c4a0b65da9cd88d21.zip |
[XRay][compiler-rt] Remove __sanitizer:: from namespace __xray (NFC)
This is a non-functional change that removes the full qualification of
functions in __sanitizer:: being used in __xray.
llvm-svn: 333983
Diffstat (limited to 'compiler-rt/lib/xray/tests/unit/profile_collector_test.cc')
-rw-r--r-- | compiler-rt/lib/xray/tests/unit/profile_collector_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/xray/tests/unit/profile_collector_test.cc b/compiler-rt/lib/xray/tests/unit/profile_collector_test.cc index 5f7d2f8697e..69003dc48ec 100644 --- a/compiler-rt/lib/xray/tests/unit/profile_collector_test.cc +++ b/compiler-rt/lib/xray/tests/unit/profile_collector_test.cc @@ -153,7 +153,7 @@ void threadProcessing() { T.exitFunction(2, 3); T.exitFunction(1, 4); - profileCollectorService::post(T, __sanitizer::GetTid()); + profileCollectorService::post(T, GetTid()); } TEST(profileCollectorServiceTest, PostSerializeCollectMultipleThread) { |