惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
爱范儿
爱范儿
J
Java Code Geeks
L
LangChain Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
博客园 - Franky
Microsoft Azure Blog
Microsoft Azure Blog
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
博客园 - 司徒正美
B
Blog
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog

mmix activity

Adding NXOR to the indes; bug report by A.Scherer (90d53fbf) · Commits · mmix / mmixware · GitLab fixing a typo and clarifying the packing of rG and rA (92054202) · 提交 · mmix / mmixware · GitLab Fixing possible buffer overrun in b command (d3e1c354) · 提交 · mmix / mmixware · GitLab adding test for non zero return of calloc (a980a4cd) · 提交 · mmix / mmixware · GitLab fixing the check for tininess of short floats (a191a0fb) · 提交 · mmix / mmixware · GitLab
Adding parentheses around <Scan a decimal constant> (0d24...
2026-03-31 · via mmix activity
提交 0d240cd1 编辑于 作者: Ruckert, Martin's avatar Ruckert, Martin
浏览文件

Adding parentheses around <Scan a decimal constant>

原始行号 差异行号 差异行
@@ -2430,6 +2430,7 @@ else *p='\"', *--p=',';
goto constant_found;

@ @<Scan a decimal constant@>=
{
  acc.h=0, acc.l=*p-'0';
  for (p++;isdigit(*p);p++) {
    acc=oplus(acc,shift_left(acc,2));
@@ -2439,6 +2440,7 @@ constant_found: val_ptr++;
  top_val.link=NULL;
  top_val.equiv=acc;
  top_val.status=pure;
}

@ @<Scan a hexadecimal constant@>=
if (!isxdigit(*p)) err("illegal hexadecimal constant");