commit | a031b35ba4da13e105a349493f5351014cfb3354 | [log] [tgz] |
---|---|---|
author | Anders Carlsson <andersca@mac.com> | Fri Nov 06 19:19:55 2009 +0000 |
committer | Anders Carlsson <andersca@mac.com> | Fri Nov 06 19:19:55 2009 +0000 |
tree | a68444a44dc364eabe0f59e7e0cba6908bf07b0e | |
parent | 30509a30a9a6ac9ee737e5cf39744a92170d7ea4 [diff] [blame] |
Simplify the debug info code, handle lvalue references and template specializations. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@86277 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGenCXX/debug-info.cpp b/test/CodeGenCXX/debug-info.cpp index 2a14185..ac9aee4 100644 --- a/test/CodeGenCXX/debug-info.cpp +++ b/test/CodeGenCXX/debug-info.cpp
@@ -4,3 +4,5 @@ }; void f(Identity<int>::Type a) {} +void f(Identity<int> a) {} +void f(int& a) { }