stevewan added inline comments.

================
Comment at: clang/test/ClangScanDeps/headerwithdirname.cpp:16
 
-// CHECK: headerwithdirname_input.o
+// CHECK: headerwithdirname_input{{.*}}{{.o|.s}}
 // CHECK-NEXT: headerwithdirname_input.cpp
----------------
Jake-Egan wrote:
> jansvoboda11 wrote:
> > Why is `{{.*}}` necessary?
> It's to match the random characters between "input" and the file extension. 
> The output on AIX looks like this:
> `/tmp/headerwithdirname_input-ffd608.s: \`
To be clear, this isn't AIX specific behaviour. We get the temp assembly file 
when `-fno-integrated-as` is on. 

Maybe slightly more accurate is,
```
// CHECK: headerwithdirname_input{{\.o|.*\.s}}
```


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D118152/new/

https://reviews.llvm.org/D118152

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to