diff options
author | Eric Christopher <echristo@apple.com> | 2012-06-05 00:15:06 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-06-05 00:15:06 +0000 |
commit | f5dad49a65869cc93badbb52d54a1d5f0791deb0 (patch) | |
tree | a369d9c24690fd1059d78b737c76727eba749514 /clang/test/CodeGenCXX/debug-info-template-member.cpp | |
parent | 974759fd8ba394fc7b814048073940f8b137a1a5 (diff) | |
download | bcm5719-llvm-f5dad49a65869cc93badbb52d54a1d5f0791deb0.tar.gz bcm5719-llvm-f5dad49a65869cc93badbb52d54a1d5f0791deb0.zip |
Only emit debug information for methods that are user defined, there's
not much reason to emit for constructors and destructors that aren't
user defined.
rdar://11593099
llvm-svn: 157970
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-template-member.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-template-member.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-template-member.cpp b/clang/test/CodeGenCXX/debug-info-template-member.cpp index 6208c80aeb6..f21718da5e6 100644 --- a/clang/test/CodeGenCXX/debug-info-template-member.cpp +++ b/clang/test/CodeGenCXX/debug-info-template-member.cpp @@ -17,5 +17,5 @@ private: MyClass m; // CHECK: metadata !{i32 {{.*}}, null, metadata !"MyClass", metadata {{.*}}, i32 {{.*}}, i64 8, i64 8, i32 0, i32 0, null, metadata [[C_MEM:.*]], i32 0, null, null} ; [ DW_TAG_class_type ] -// CHECK: [[C_MEM]] = metadata !{metadata {{.*}}, metadata [[C_TEMP:.*]], metadata {{.*}}} +// CHECK: [[C_MEM]] = metadata !{metadata {{.*}}, metadata [[C_TEMP:.*]]} // CHECK: [[C_TEMP]] = metadata !{i32 {{.*}}, i32 0, metadata {{.*}}, metadata !"add<2>", metadata !"add<2>", metadata !"_ZN7MyClass3addILi2EEEii", metadata {{.*}} |