From 90bf4170a74f3c5b0da3732e265f5a77f301f9ea Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Wed, 9 Nov 2022 13:39:29 -0800 Subject: [PATCH] [ORC] Fix comments: SymbolStringPool is thread-safe, not multi-threaded. --- llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h b/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h index 7e43396..e20f20f 100644 --- a/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h +++ b/llvm/include/llvm/ExecutionEngine/Orc/SymbolStringPool.h @@ -1,4 +1,4 @@ -//===- SymbolStringPool.h - Multi-threaded pool for JIT symbols -*- C++ -*-===// +//===-- SymbolStringPool.h -- Thread-safe pool for JIT symbols --*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. @@ -6,7 +6,7 @@ // //===----------------------------------------------------------------------===// // -// Contains a multi-threaded string pool suitable for use with ORC. +// Contains a thread-safe string pool suitable for use with ORC. // //===----------------------------------------------------------------------===// -- 2.7.4