1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 02:52:53 +02:00

Fix typo in llvm/lib/Target/README.txt

Trivial typo, replace __builtin_objectsize with __builtin_object_size.

Differential Revision: https://reviews.llvm.org/D92914
This commit is contained in:
Siddhesh Poyarekar 2020-12-09 09:29:06 +01:00 committed by serge-sans-paille
parent 2573f332ed
commit 70c1820d15

View File

@ -1840,7 +1840,7 @@ current definition always folds to a constant. We also should make sure that
we remove checking in code like
char *p = malloc(strlen(s)+1);
__strcpy_chk(p, s, __builtin_objectsize(p, 0));
__strcpy_chk(p, s, __builtin_object_size(p, 0));
//===---------------------------------------------------------------------===//