<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm-project.git/llvm/docs/CommandGuide/FileCheck.rst, branch main</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/'/>
<entry>
<title>[FileCheck][Docs] Fix regex for FileCheck variable names (#97301)</title>
<updated>2024-07-02T10:53:15+00:00</updated>
<author>
<name>Anton Lydike</name>
<email>me@AntonLydike.de</email>
</author>
<published>2024-07-02T10:53:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=6ad82fcc7d418e6e4cac9e0f82a35d8021f61ffa'/>
<id>6ad82fcc7d418e6e4cac9e0f82a35d8021f61ffa</id>
<content type='text'>
This fixes a minor oversight in the FileCheck documentation on what is
considered a valid variable name.

Global variables are prefixed with a `$`, which is explained two
paragraphs below, but this was omitted in the presented regex in this
paragraph.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fixes a minor oversight in the FileCheck documentation on what is
considered a valid variable name.

Global variables are prefixed with a `$`, which is explained two
paragraphs below, but this was omitted in the presented regex in this
paragraph.</pre>
</div>
</content>
</entry>
<entry>
<title>Update FileCheck docs after D95849. NFCI</title>
<updated>2022-06-16T08:18:12+00:00</updated>
<author>
<name>Diana Picus</name>
<email>diana.picus@linaro.org</email>
</author>
<published>2022-06-15T11:24:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=24b98520e2e8f27cdc1169f38b07884b719472f6'/>
<id>24b98520e2e8f27cdc1169f38b07884b719472f6</id>
<content type='text'>
The default has been false for quite a while now.

Differential Revision: https://reviews.llvm.org/D127846
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The default has been false for quite a while now.

Differential Revision: https://reviews.llvm.org/D127846
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix some typos in the llvm docs</title>
<updated>2021-08-31T19:31:20+00:00</updated>
<author>
<name>Sylvestre Ledru</name>
<email>sylvestre@debian.org</email>
</author>
<published>2021-08-31T19:30:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=c28473fe4aded9649f4b552d8259c22a43f0d68e'/>
<id>c28473fe4aded9649f4b552d8259c22a43f0d68e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[FileCheck] Add support for hex alternate form in FileCheck</title>
<updated>2021-03-12T18:14:17+00:00</updated>
<author>
<name>Thomas Preud'homme</name>
<email>thomasp@graphcore.ai</email>
</author>
<published>2020-06-11T15:14:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=f9e2a62cc594c96194908a3ac4804caa07f86ba6'/>
<id>f9e2a62cc594c96194908a3ac4804caa07f86ba6</id>
<content type='text'>
Add printf-style alternate form flag to prefix hex number with 0x when
present. This works on both empty numeric expression (e.g. variable
definition from input) and when matching a numeric expression. The
syntax is as follows:

[[#%#&lt;precision specifier&gt;&lt;format specifier&gt;, ...]

where &lt;precision specifier&gt; and &lt;format specifier&gt; are optional and ...
can be a variable definition or not with an empty expression or not.

This feature was requested in https://reviews.llvm.org/D81144#2075532
for llvm/test/MC/ELF/gen-dwarf64.s

Reviewed By: jdenny

Differential Revision: https://reviews.llvm.org/D97845
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add printf-style alternate form flag to prefix hex number with 0x when
present. This works on both empty numeric expression (e.g. variable
definition from input) and when matching a numeric expression. The
syntax is as follows:

[[#%#&lt;precision specifier&gt;&lt;format specifier&gt;, ...]

where &lt;precision specifier&gt; and &lt;format specifier&gt; are optional and ...
can be a variable definition or not with an empty expression or not.

This feature was requested in https://reviews.llvm.org/D81144#2075532
for llvm/test/MC/ELF/gen-dwarf64.s

Reviewed By: jdenny

Differential Revision: https://reviews.llvm.org/D97845
</pre>
</div>
</content>
</entry>
<entry>
<title>[FileCheck] Add a literal check directive modifier</title>
<updated>2020-12-19T01:26:15+00:00</updated>
<author>
<name>Jacques Pienaar</name>
<email>jpienaar@google.com</email>
</author>
<published>2020-12-19T01:26:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=44f399ccc12e27d20bae1ea7e712ef7f71e2ff3a'/>
<id>44f399ccc12e27d20bae1ea7e712ef7f71e2ff3a</id>
<content type='text'>
Introduce CHECK modifiers that change the behavior of the CHECK
directive. Also add a LITERAL modifier for cases where matching could
end requiring escaping strings interpreted as regex where only
literal/fixed string matching is desired (making the CHECK's more
difficult to write/fragile and difficult to interpret).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Introduce CHECK modifiers that change the behavior of the CHECK
directive. Also add a LITERAL modifier for cases where matching could
end requiring escaping strings interpreted as regex where only
literal/fixed string matching is desired (making the CHECK's more
difficult to write/fragile and difficult to interpret).
</pre>
</div>
</content>
</entry>
<entry>
<title>[Docs][FileCheck] Small fix.</title>
<updated>2020-11-03T15:08:51+00:00</updated>
<author>
<name>Mircea Trofin</name>
<email>mtrofin@google.com</email>
</author>
<published>2020-11-03T15:08:51+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=34b0a99cce8143be8a9bea8677b4cccece74264b'/>
<id>34b0a99cce8143be8a9bea8677b4cccece74264b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[FileCheck] Added documentation for --allow-unused-prefixes</title>
<updated>2020-11-02T20:15:45+00:00</updated>
<author>
<name>Mircea Trofin</name>
<email>mtrofin@google.com</email>
</author>
<published>2020-11-02T16:46:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=22113341d7470d5dc6245b623f84d27c46e2895a'/>
<id>22113341d7470d5dc6245b623f84d27c46e2895a</id>
<content type='text'>
Differential Revision: https://reviews.llvm.org/D90621
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Differential Revision: https://reviews.llvm.org/D90621
</pre>
</div>
</content>
</entry>
<entry>
<title>[docs] Fix indentation in FileCheck.rst</title>
<updated>2020-08-31T20:20:04+00:00</updated>
<author>
<name>Arthur Eubanks</name>
<email>aeubanks@google.com</email>
</author>
<published>2020-08-31T20:19:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=61e15ecab50943d8e62add494ff35d1cd165758d'/>
<id>61e15ecab50943d8e62add494ff35d1cd165758d</id>
<content type='text'>
Fixes
C:\src\llvm-project\llvm\docs\CommandGuide\FileCheck.rst:745:Bullet list ends without a blank line; unexpected unindent.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes
C:\src\llvm-project\llvm\docs\CommandGuide\FileCheck.rst:745:Bullet list ends without a blank line; unexpected unindent.
</pre>
</div>
</content>
</entry>
<entry>
<title>[FileCheck] Add precision to format specifier</title>
<updated>2020-08-30T18:40:57+00:00</updated>
<author>
<name>Thomas Preud'homme</name>
<email>thomasp@graphcore.ai</email>
</author>
<published>2020-06-11T15:14:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=998709b7d553e89c4ff89725d3fa646468b7b437'/>
<id>998709b7d553e89c4ff89725d3fa646468b7b437</id>
<content type='text'>
Add printf-style precision specifier to pad numbers to a given number of
digits when matching them if the value is smaller than the given
precision. This works on both empty numeric expression (e.g. variable
definition from input) and when matching a numeric expression. The
syntax is as follows:

[[#%.&lt;precision&gt;&lt;format specifier&gt;, ...]

where &lt;format specifier&gt; is optional and ... can be a variable
definition or not with an empty expression or not. In the absence of a
precision specifier, a variable definition will accept leading zeros.

Reviewed By: jhenderson, grimar

Differential Revision: https://reviews.llvm.org/D81667
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add printf-style precision specifier to pad numbers to a given number of
digits when matching them if the value is smaller than the given
precision. This works on both empty numeric expression (e.g. variable
definition from input) and when matching a numeric expression. The
syntax is as follows:

[[#%.&lt;precision&gt;&lt;format specifier&gt;, ...]

where &lt;format specifier&gt; is optional and ... can be a variable
definition or not with an empty expression or not. In the absence of a
precision specifier, a variable definition will accept leading zeros.

Reviewed By: jhenderson, grimar

Differential Revision: https://reviews.llvm.org/D81667
</pre>
</div>
</content>
</entry>
<entry>
<title>[FileCheck][docs] Fix word errors</title>
<updated>2020-08-25T08:53:52+00:00</updated>
<author>
<name>Yang Zhihui</name>
<email>yangzh.fnst@cn.fujitsu.com</email>
</author>
<published>2020-08-25T08:41:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.belthelziquor.com/llvm-project.git/commit/?id=70b39506a1a68f16e4d59f998c6a099f98363964'/>
<id>70b39506a1a68f16e4d59f998c6a099f98363964</id>
<content type='text'>
ouput -&gt; output

Reviewed By: thopre

Differential Revision: https://reviews.llvm.org/D86504
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ouput -&gt; output

Reviewed By: thopre

Differential Revision: https://reviews.llvm.org/D86504
</pre>
</div>
</content>
</entry>
</feed>
