Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/cpu_features.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Chatelet <gchatelet@google.com>2022-07-28 17:29:50 +0300
committerGuillaume Chatelet <gchatelet@google.com>2022-07-28 17:29:50 +0300
commitf60b6f84051976e2cb226de7278c1d7edbb2b74e (patch)
treee1469b39254857da2a7ebb7b9f7294fc8f1c0d71
parent8d86a40b7acdcac23aeac4fa0023175e26587cfb (diff)
[NFC] Remove unused variable
-rw-r--r--src/utils/list_cpu_features.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/utils/list_cpu_features.c b/src/utils/list_cpu_features.c
index 8e6bfdd..4d7fe14 100644
--- a/src/utils/list_cpu_features.c
+++ b/src/utils/list_cpu_features.c
@@ -363,7 +363,6 @@ static void AddCacheInfo(Node* root, const CacheInfo* cache_info) {
static Node* CreateTree(void) {
Node* root = CreateMap();
#if defined(CPU_FEATURES_ARCH_X86)
- char brand_string[49];
const X86Info info = GetX86Info();
const CacheInfo cache_info = GetX86CacheInfo();
AddMapEntry(root, "arch", CreateString("x86"));