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

推荐订阅源

T
The Blog of Author Tim Ferriss
S
Securelist
D
Docker
The Register - Security
The Register - Security
GbyAI
GbyAI
Recorded Future
Recorded Future
Engineering at Meta
Engineering at Meta
Stack Overflow Blog
Stack Overflow Blog
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
罗磊的独立博客
博客园 - 【当耐特】
F
Full Disclosure
WordPress大学
WordPress大学
腾讯CDC
小众软件
小众软件
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
SecWiki News
SecWiki News
L
Lohrmann on Cybersecurity
I
InfoQ
MyScale Blog
MyScale Blog
量子位
Cyberwarzone
Cyberwarzone
博客园 - 三生石上(FineUI控件)
The Hacker News
The Hacker News
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
博客园_首页
H
Help Net Security
K
Kaspersky official blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
www.infosecurity-magazine.com
www.infosecurity-magazine.com
Webroot Blog
Webroot Blog
Blog — PlanetScale
Blog — PlanetScale
V
Vulnerabilities – Threatpost
Y
Y Combinator Blog
The Cloudflare Blog
P
Proofpoint News Feed
V
Visual Studio Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
T
Tailwind CSS Blog
爱范儿
爱范儿
P
Privacy International News Feed
Security Archives - TechRepublic
Security Archives - TechRepublic
The GitHub Blog
The GitHub Blog
C
Cybersecurity and Infrastructure Security Agency CISA
B
Blog RSS Feed

mmix activity

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> (0d240cd1) · 提交 · mmix / mmixware · GitLab
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");