Fix warning

This commit is contained in:
Carles Fernandez 2020-10-23 21:54:18 +02:00
parent 2f58c4aef1
commit 7c2954c08f
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
1 changed files with 2 additions and 0 deletions

View File

@ -362,6 +362,8 @@ static Node* GetCacheTypeString(CacheType cache_type)
return CreateConstantString("stlb");
case CPU_FEATURE_CACHE_PREFETCH:
return CreateConstantString("prefetch");
default:
return CreateConstantString("null");
}
}