summaryrefslogtreecommitdiffstats
path: root/clang/test
diff options
context:
space:
mode:
authorDavid Majnemer <david.majnemer@gmail.com>2013-09-27 07:04:31 +0000
committerDavid Majnemer <david.majnemer@gmail.com>2013-09-27 07:04:31 +0000
commit143c55ead2e3fa089f6a0b8af3d84560dfd6e9d6 (patch)
treeae3e6073e3d61fe8be2e3b8a78ca7d59636f64bb /clang/test
parentacfcd0d51be7022b5d18ca26832892a5cc7bc1c2 (diff)
downloadbcm5719-llvm-143c55ead2e3fa089f6a0b8af3d84560dfd6e9d6.tar.gz
bcm5719-llvm-143c55ead2e3fa089f6a0b8af3d84560dfd6e9d6.zip
AST: Handle qualified array types in typeid() expressions
The intent of getTypeOperand() was to yield an unqualified type. However QualType::getUnqualifiedType() does not strip away qualifiers on arrays. N.B. This worked fine when typeid() was applied to an expression because we would inject as implicit cast to the unqualified array type in the AST. llvm-svn: 191487
Diffstat (limited to 'clang/test')
-rw-r--r--clang/test/CodeGenCXX/typeid.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/typeid.cpp b/clang/test/CodeGenCXX/typeid.cpp
index f54b60d0cd2..9d212905e61 100644
--- a/clang/test/CodeGenCXX/typeid.cpp
+++ b/clang/test/CodeGenCXX/typeid.cpp
@@ -27,6 +27,9 @@ extern A &a;
// CHECK: @_ZN5Test14a_tiE = global
const std::type_info &a_ti = typeid(a);
+// CHECK: @_ZN5Test18A10_c_tiE = constant %"class.std::type_info"* bitcast ({ i8*, i8* }* @_ZTIA10_c to %"class.std::type_info"*), align 8
+const std::type_info &A10_c_ti = typeid(char const[10]);
+
// CHECK-LABEL: define i8* @_ZN5Test11fEv
const char *f() {
try {
OpenPOWER on IntegriCloud