summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/debug-info.cpp
diff options
context:
space:
mode:
authorAnders Carlsson <andersca@mac.com>2009-11-06 19:19:55 +0000
committerAnders Carlsson <andersca@mac.com>2009-11-06 19:19:55 +0000
commit443f6773029a45a705ae2873fb620904289513dd (patch)
tree43b5ab939188853c3106f062957f6565e7173e7c /clang/test/CodeGenCXX/debug-info.cpp
parentc2d71b531c63eeb9679af79f5437bbf150cb99ec (diff)
downloadbcm5719-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.cpp2
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) { }
OpenPOWER on IntegriCloud