diff options
author | Paul Robinson <paul.robinson@sony.com> | 2018-11-28 21:18:07 +0000 |
---|---|---|
committer | Paul Robinson <paul.robinson@sony.com> | 2018-11-28 21:18:07 +0000 |
commit | 416b12f776e7390a23d9fbeda434ec572d25050b (patch) | |
tree | 505572176bdd2c9f0ea2d9573146f07e3fb53fbd /clang/test/CodeGenCXX/debug-info-function-context.cpp | |
parent | adcdc1bd0a8802f5260162b8b63762724bf1ff32 (diff) | |
download | bcm5719-llvm-416b12f776e7390a23d9fbeda434ec572d25050b.tar.gz bcm5719-llvm-416b12f776e7390a23d9fbeda434ec572d25050b.zip |
[DebugInfo] NFC Clang test changes for: IR/Bitcode changes for DISubprogram flags.
Differential Revision: https://reviews.llvm.org/D54756
llvm-svn: 347807
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-function-context.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-function-context.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-function-context.cpp b/clang/test/CodeGenCXX/debug-info-function-context.cpp index 1db62d96d5b..40a6643e71f 100644 --- a/clang/test/CodeGenCXX/debug-info-function-context.cpp +++ b/clang/test/CodeGenCXX/debug-info-function-context.cpp @@ -28,10 +28,10 @@ int global_namespace_variable = 1; // CHECK: ![[FILE:[0-9]+]] = !DIFile(filename: "{{.*}}context.cpp", // CHECK: ![[C:[0-9]+]] = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "C", // CHECK: ![[NS:.*]] = !DINamespace(name: "ns" -// CHECK: !DISubprogram(name: "member_function",{{.*}} scope: ![[C]],{{.*}} isDefinition: true +// CHECK: !DISubprogram(name: "member_function",{{.*}} scope: ![[C]],{{.*}} DISPFlagDefinition -// CHECK: !DISubprogram(name: "static_member_function",{{.*}} scope: ![[C]],{{.*}} isDefinition: true +// CHECK: !DISubprogram(name: "static_member_function",{{.*}} scope: ![[C]],{{.*}} DISPFlagDefinition -// CHECK: !DISubprogram(name: "global_function",{{.*}} scope: ![[FILE]],{{.*}} isDefinition: true +// CHECK: !DISubprogram(name: "global_function",{{.*}} scope: ![[FILE]],{{.*}} DISPFlagDefinition -// CHECK: !DISubprogram(name: "global_namespace_function",{{.*}} scope: ![[NS]],{{.*}} isDefinition: true +// CHECK: !DISubprogram(name: "global_namespace_function",{{.*}} scope: ![[NS]],{{.*}} DISPFlagDefinition |