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

推荐订阅源

博客园 - Franky
雷峰网
雷峰网
The Cloudflare Blog
WordPress大学
WordPress大学
博客园 - 聂微东
人人都是产品经理
人人都是产品经理
IT之家
IT之家
V
V2EX
博客园 - 司徒正美
小众软件
小众软件
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
Last Week in AI
Last Week in AI
Jina AI
Jina AI
博客园 - 叶小钗
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
阮一峰的网络日志
阮一峰的网络日志
爱范儿
爱范儿

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");