From 9a33b0a85ef1e35f8cea6b32d44605551559ddfd Mon Sep 17 00:00:00 2001 From: qijitao Date: Tue, 23 Apr 2024 11:38:20 +0000 Subject: [PATCH] =?UTF-8?q?update=20LLVM=20Parallel=20Universe=20Project/?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E5=AE=9A=E4=BD=8D=E6=80=BB=E7=BB=93/expected?= =?UTF-8?q?=20parameter=20declarator=E9=97=AE=E9=A2=98=E5=AE=9A=E4=BD=8D?= =?UTF-8?q?=E5=8F=8A=E4=BF=AE=E5=A4=8D=E6=8C=87=E5=AF=BC.md.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修复《expected parameter declarator问题定位及修复指导》错误描述。 Signed-off-by: qijitao --- ...\217\212\344\277\256\345\244\215\346\214\207\345\257\274.md" | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git "a/LLVM Parallel Universe Project/\351\227\256\351\242\230\345\256\232\344\275\215\346\200\273\347\273\223/expected parameter declarator\351\227\256\351\242\230\345\256\232\344\275\215\345\217\212\344\277\256\345\244\215\346\214\207\345\257\274.md" "b/LLVM Parallel Universe Project/\351\227\256\351\242\230\345\256\232\344\275\215\346\200\273\347\273\223/expected parameter declarator\351\227\256\351\242\230\345\256\232\344\275\215\345\217\212\344\277\256\345\244\215\346\214\207\345\257\274.md" index a71eb41..3069ec5 100644 --- "a/LLVM Parallel Universe Project/\351\227\256\351\242\230\345\256\232\344\275\215\346\200\273\347\273\223/expected parameter declarator\351\227\256\351\242\230\345\256\232\344\275\215\345\217\212\344\277\256\345\244\215\346\214\207\345\257\274.md" +++ "b/LLVM Parallel Universe Project/\351\227\256\351\242\230\345\256\232\344\275\215\346\200\273\347\273\223/expected parameter declarator\351\227\256\351\242\230\345\256\232\344\275\215\345\217\212\344\277\256\345\244\215\346\214\207\345\257\274.md" @@ -96,7 +96,7 @@ dprintf (int __fd, const char *__restrict __fmt, ...) 在编译过程中,需要设置`D_FORTIFY_SOURCE`宏才能启用`FORTIFY_SEOURCE`。实现了两个级别的检查。将宏设置为1将启用一些检查(手册页上说“执行不应改变符合程序行为的检查”),而将其设置为2将增加一些检查。 ### 2.2.2、__va_arg_pack -这个是GCC处理变参函数时[引入的内建函数](https://gcc.gnu.org/onlinedocs/gcc-4.7.2/gcc/Constructing-Calls.html),LLVM社区没有接纳对[这个GNU扩展的支持](https://reviews.llvm.org/D57635)。 +这个是GCC处理变长参函数时[引入的内建函数](https://gcc.gnu.org/onlinedocs/gcc-4.7.2/gcc/Constructing-Calls.html),LLVM社区没有接纳对[这个GNU扩展的支持](https://reviews.llvm.org/D57635)。 ### 2.2.3、问题总结及根因确认 (1)系统对`dprintf`的定义有两种。 -- Gitee