diff options
author | Anders Carlsson <andersca@mac.com> | 2009-11-06 19:19:55 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-11-06 19:19:55 +0000 |
commit | 443f6773029a45a705ae2873fb620904289513dd (patch) | |
tree | 43b5ab939188853c3106f062957f6565e7173e7c /clang/test/CodeGenCXX/debug-info.cpp | |
parent | c2d71b531c63eeb9679af79f5437bbf150cb99ec (diff) | |
download | bcm5719-llvm-443f6773029a45a705ae2873fb620904289513dd.tar.gz bcm5719-llvm-443f6773029a45a705ae2873fb620904289513dd.zip |
Simplify the debug info code, handle lvalue references and template specializations.
llvm-svn: 86277
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/debug-info.cpp b/clang/test/CodeGenCXX/debug-info.cpp index 2a141857cfe..ac9aee4cb2f 100644 --- a/clang/test/CodeGenCXX/debug-info.cpp +++ b/clang/test/CodeGenCXX/debug-info.cpp @@ -4,3 +4,5 @@ template<typename T> struct Identity { }; void f(Identity<int>::Type a) {} +void f(Identity<int> a) {} +void f(int& a) { } |