Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
71ab284
Fix the test directories suggested by `./x.py suggest`
Zalathar Apr 30, 2023
a4ef2f5
Make ConstProp tests unit.
cjgillot May 1, 2023
eea6202
check bootstrap scripts syntax
onur-ozkan May 3, 2023
1e4fd21
Diagnostic args are still args if they're documented
compiler-errors May 3, 2023
0aa6b1e
Make spans a bit better
compiler-errors May 3, 2023
00ac29d
Output LLVM optimization remark kind in `-Cremark` output
Kobzol May 4, 2023
105adf3
Fix instrument-coverage tests by using Python to sort instantiation g…
Zalathar May 4, 2023
08fc451
asm: loongarch64: Implementation of clobber_abi
heiher May 4, 2023
67ae38a
Expand the LLVM coverage of `--print target-cpus`
cuviper May 6, 2023
9027d20
Check arguments length in trivial diagnostic lint
clubby789 May 6, 2023
92fa8d0
Rollup merge of #111002 - Zalathar:x-suggest-dirs, r=Mark-Simulacrum
matthiaskrgr May 6, 2023
89f0efd
Rollup merge of #111077 - cjgillot:const-prop-unit, r=Mark-Simulacrum
matthiaskrgr May 6, 2023
413cff2
Rollup merge of #111151 - ozkanonur:syntax-check-on-bootstrap-scripts…
matthiaskrgr May 6, 2023
1b015e3
Rollup merge of #111170 - compiler-errors:diag-doc, r=petrochenkov
matthiaskrgr May 6, 2023
f2ac543
Rollup merge of #111179 - Zalathar:sort-groups, r=Mark-Simulacrum
matthiaskrgr May 6, 2023
bd9924b
Rollup merge of #111203 - Kobzol:remark-print-kind, r=tmiasko
matthiaskrgr May 6, 2023
f2f1b75
Rollup merge of #111237 - loongarch-rs:clobber-abi, r=Amanieu
matthiaskrgr May 6, 2023
eb53ccf
Rollup merge of #111274 - cuviper:print-target-cpus, r=Mark-Simulacrum
matthiaskrgr May 6, 2023
c56f165
Rollup merge of #111289 - clubby789:fix-111280, r=jyn514
matthiaskrgr May 6, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion x
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@

set -eu

# syntax check
sh -n $0

realpath() {
if [ -d "$1" ]; then
CDPATH='' command cd "$1" && pwd -P
CDPATH='' command cd "$1" && pwd -P
else
echo "$(realpath "$(dirname "$1")")/$(basename "$1")"
fi
Expand Down
5 changes: 5 additions & 0 deletions x.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

# See ./x for why these scripts exist.

$ErrorActionPreference = "Stop"

# syntax check
Get-Command -syntax ${PSCommandPath}

$xpy = Join-Path $PSScriptRoot x.py
# Start-Process for some reason splits arguments on spaces. (Isn't powershell supposed to be simpler than bash?)
# Double-quote all the arguments so it doesn't do that.
Expand Down