&'a ::rynco::UntitledChannel
与此同时,谁急了我不说()
看热闹不嫌事大的星舰重新涂装
https://m.weibo.cn/detail/4894153320170765
https://m.weibo.cn/detail/4894153320170765
🤣17👍1
Forwarded from Hacker News
Commercial lunar lander presumed lost after moon landing attempt (Score: 150+ in 7 hours)
Link: https://readhacker.news/s/5Dj8E
Comments: https://readhacker.news/c/5Dj8E
Link: https://readhacker.news/s/5Dj8E
Comments: https://readhacker.news/c/5Dj8E
CNN
Commercial lunar lander presumed lost after historic moon landing attempt
A Japanese lunar lander, carrying a rover developed in the United Arab Emirates, attempted to find its footing on the moon's surface Tuesday — but flight controllers presumed the spacecraft was lost after failing to regain contact.
&'a ::rynco::UntitledChannel
CI/CD 是什么.jpg
到现在群友还没搞明白这个结果是怎么算出来的
Forwarded from Matrew File
罗马数字。C(100)I(1)/C(100)D(500)=101/400=0.2525
🐳28👨💻1🤗1
This media is not supported in your browser
VIEW IN TELEGRAM
md 编译个东西碰到了一个十年没修的 clang bug
TL;DR: 在编译含有函数指针的结构体的时候,clang 有时会把函数指针变成指向空结构体的指针(
如:
偶尔会被编译成
而不是
https://stackoverflow.com/questions/18730620/why-a-function-pointer-field-in-a-llvm-ir-struct-is-replaced-by
https://bugs.llvm.org/show_bug.cgi?id=14920
https://github.com/llvm/llvm-project/issues/15292
TL;DR: 在编译含有函数指针的结构体的时候,clang 有时会把函数指针变成指向空结构体的指针(
{}*)如:
struct Foo {
int (*foo)(int*);
}
偶尔会被编译成
%struct.Foo = { {}* }
而不是
%struct.Foo = { int* (int*)* }https://stackoverflow.com/questions/18730620/why-a-function-pointer-field-in-a-llvm-ir-struct-is-replaced-by
https://bugs.llvm.org/show_bug.cgi?id=14920
https://github.com/llvm/llvm-project/issues/15292
Stack Overflow
Why a function pointer field in a LLVM IR struct is replaced by {}*?
I compiled the MUSL C library using Clang 3.3, and dumped the generated LLVM IR files. I found that the FILE struct
struct __FILE_s {
unsigned flags;
unsigned char *rpos, *rend;
int (*...
struct __FILE_s {
unsigned flags;
unsigned char *rpos, *rend;
int (*...
🤯18🥰3❤1