Use ANSI symbols

This commit is contained in:
Dmitry Stogov 2023-02-17 09:11:38 +03:00
parent fd653528e9
commit 28a5714a8e
2 changed files with 5 additions and 5 deletions

8
ir.c
View File

@ -5,13 +5,13 @@
* Authors: Dmitry Stogov <dmitry@php.net>
*
* The logical IR representation is based on Cliff Click's Sea of Nodes.
* See: C. Click, M. Paleczny. A Simple Graph-Based Intermediate
* Representation In ACM SIGPLAN Workshop on Intermediate Representations
* See: C. Click, M. Paleczny. "A Simple Graph-Based Intermediate
* Representation" In ACM SIGPLAN Workshop on Intermediate Representations
* (IR '95), pages 35-49, Jan. 1995.
*
* The phisical IR representation is based on Mike Pall's LuaJIT IR.
* See: M. Pall. LuaJIT 2.0 intellectual property disclosure and research
* opportunities November 2009 http://lua-users.org/lists/lua-l/2009-11/msg00089.html
* See: M. Pall. "LuaJIT 2.0 intellectual property disclosure and research
* opportunities" November 2009 http://lua-users.org/lists/lua-l/2009-11/msg00089.html
*/
#ifndef _GNU_SOURCE

View File

@ -5,7 +5,7 @@
* Authors: Dmitry Stogov <dmitry@php.net>
*
* The GCM algorithm is based on Cliff Click's publication
* See: C. Click. "Global code motion, global value numbering" Submitted to PLDI95.
* See: C. Click. "Global code motion, global value numbering" Submitted to PLDI'95.
*/
#include "ir.h"