Merge "linker: add the L3 cache auxv constants." into main am: 2520ce694b

Original change: https://android-review.googlesource.com/c/platform/bionic/+/2799367

Change-Id: I595c1c9a59c2032d26a0077b40db6e48b3762939
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Elliott Hughes 2023-10-25 21:09:30 +00:00 committed by Automerger Merge Worker
commit f20213398d

View file

@ -86,6 +86,12 @@ static const char* auxv_name(int at) {
#endif
#if defined(AT_L2_CACHEGEOMETRY)
case AT_L2_CACHEGEOMETRY: return "AT_L2_CACHEGEOMETRY";
#endif
#if defined(AT_L3_CACHESIZE)
case AT_L3_CACHESIZE: return "AT_L3_CACHESIZE";
#endif
#if defined(AT_L3_CACHEGEOMETRY)
case AT_L3_CACHEGEOMETRY: return "AT_L3_CACHEGEOMETRY";
#endif
}
static char name[32];