[flang][cuda] Adapt ExternalNameConversion to work in gpu module (#117039)
[llvm-project.git] / clang / test / ClangScanDeps / strip-llvm-args.m
blobca8eab7729232b16d08fdcc8b3631155943bd638
1 // RUN: rm -rf %t
2 // RUN: split-file %s %t
3 // RUN: sed -e "s|DIR|%/t|g" %t/cdb1.json.template > %t/cdb1.json
5 // RUN: clang-scan-deps -compilation-database %t/cdb1.json -format experimental-full > %t/result1.txt
6 // RUN: FileCheck %s -input-file %t/result1.txt
8 // CHECK:        "modules": [
9 // CHECK-NEXT:     {
10 // CHECK:            "command-line": [
11 // CHECK-NOT:          "-mllvm"
12 // CHECK:            ]
13 // CHECK:            "name": "A"
14 // CHECK:          }
15 // CHECK-NOT:        "name": "A"
16 // CHECK:        "translation-units"
18 //--- cdb1.json.template
20   {
21     "directory": "DIR",
22     "command": "clang -Imodules/A -fmodules -fmodules-cache-path=DIR/module-cache -fimplicit-modules -fimplicit-module-maps -fsyntax-only DIR/t1.m",
23     "file": "DIR/t1.m"
24   },
25   {
26     "directory": "DIR",
27     "command": "clang -Imodules/A -fmodules -fmodules-cache-path=DIR/module-cache -fimplicit-modules -fimplicit-module-maps -mllvm -stackmap-version=2 -fsyntax-only DIR/t2.m",
28     "file": "DIR/t2.m"
29   }
32 //--- modules/A/module.modulemap
34 module A {
35   umbrella header "A.h"
38 //--- modules/A/A.h
40 typedef int A_t;
42 //--- t1.m
43 @import A;
45 //--- t2.m
46 @import A;