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

推荐订阅源

D
Docker
F
Fortinet All Blogs
爱范儿
爱范儿
博客园 - Franky
MyScale Blog
MyScale Blog
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
B
Blog
P
Proofpoint News Feed
IT之家
IT之家
宝玉的分享
宝玉的分享
D
DataBreaches.Net
S
SegmentFault 最新的问题
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
M
MIT News - Artificial intelligence
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
雷峰网
雷峰网
Stack Overflow Blog
Stack Overflow Blog
量子位
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

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