[flang-commits] [flang] [flang] Remove directory path from compiler remarks (PR #212669)
John Otken via flang-commits
flang-commits at lists.llvm.org
Mon Aug 31 07:37:41 PDT 2026
jotken wrote:
Merge ping. I fixed the forward slash vs backward slash Windows unit test failure. Here are the manual Windows tests:
C:\Users\john\tmp\one>%FLANG% -O2 -Rpass=loop-vectorize -c vec.f90
vec.f90:7:2: remark: vectorized loop (vectorization width: 4, interleaved count: 2) [-Rpass=loop-vectorize]
C:\Users\john\tmp\one>%FLANG% -O2 -Rpass=loop-vectorize -c two\vec.f90
two\vec.f90:7:2: remark: vectorized loop (vectorization width: 4, interleaved count: 2) [-Rpass=loop-vectorize]
C:\Users\john\tmp\one>%FLANG% -O2 -Rpass=loop-vectorize -c ..\vec.f90
..\vec.f90:7:2: remark: vectorized loop (vectorization width: 4, interleaved count: 2) [-Rpass=loop-vectorize]
C:\Users\john\tmp\one>%FLANG% -O2 -Rpass=loop-vectorize -c .\vec.f90
vec.f90:7:2: remark: vectorized loop (vectorization width: 4, interleaved count: 2) [-Rpass=loop-vectorize]
C:\Users\john\tmp\one>%FLANG% -O2 -Rpass=loop-vectorize -c %TMP%\vec.f90
\Users\john\tmp\vec.f90:7:2: remark: vectorized loop (vectorization width: 4, interleaved count: 2) [-Rpass=loop-vectorize]
C:\Users\john\tmp\one>%FLANG% -O2 -Rpass=loop-vectorize -c C:%TMP%\vec.f90
C:\Users\john\tmp\vec.f90:7:2: remark: vectorized loop (vectorization width: 4, interleaved count: 2) [-Rpass=loop-vectorize]
https://github.com/llvm/llvm-project/pull/212669
More information about the flang-commits
mailing list