]> granicus.if.org Git - clang/commitdiff
Copy conversion of an expression to its base class
authorFariborz Jahanian <fjahanian@apple.com>
Mon, 19 Oct 2009 19:18:20 +0000 (19:18 +0000)
committerFariborz Jahanian <fjahanian@apple.com>
Mon, 19 Oct 2009 19:18:20 +0000 (19:18 +0000)
is a standard convesion and not a user-defined
conversion.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84525 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Sema/SemaOverload.cpp
test/CodeGenCXX/derived-to-base-conv.cpp

index 0f2256b6bcc31a670d141e8d47c471869aeaca6c..436b3d1e2757bf86252cb94d1650d230f9ecce79 100644 (file)
@@ -2539,6 +2539,18 @@ Sema::AddConversionCandidate(CXXConversionDecl *Conversion,
     Candidate.Viable = false;
     return;
   }
+  
+  // We won't go through a user-define type conversion function to convert a 
+  // derived to base as such conversions are given Conversion Rank. They only
+  // go through a copy constructor. 13.3.3.1.2-p4 [over.ics.user]
+  QualType FromCanon
+    = Context.getCanonicalType(From->getType().getUnqualifiedType());
+  QualType ToCanon = Context.getCanonicalType(ToType).getUnqualifiedType();
+  if (FromCanon == ToCanon || IsDerivedFrom(FromCanon, ToCanon)) {
+    Candidate.Viable = false;
+    return;
+  }
+  
 
   // To determine what the conversion from the result of calling the
   // conversion function to the type we're eventually trying to
index 218116e346de1671566abd0680308b05f4429fa1..0c890195119f9a14f6d2784398bc0ed001ae894c 100644 (file)
@@ -5,6 +5,7 @@
 // RUN: true
 
 extern "C" int printf(...);
+extern "C" void exit(int);
 
 struct A {
  A (const A&) { printf("A::A(const A&)\n"); }
@@ -44,8 +45,35 @@ int main()
     func(x);
 }
 
+struct Base;
+
+struct Root {
+  operator Base&() { exit(1); }
+};
+
+struct Derived;
+
+struct Base : Root {
+  Base(const Base&) { printf("Base::(const Base&)\n"); }
+  Base() { printf("Base::Base()\n"); }
+  operator Derived&() { exit(1); }
+};
+
+struct Derived : Base {
+};
+
+void foo(Base) {}
+
+void test(Derived bb)
+{
+       // CHECK-LP64-NOT: call     __ZN4BasecvR7DerivedEv
+       // CHECK-LP32-NOT: call     L__ZN4BasecvR7DerivedEv
+        foo(bb);
+}
 // CHECK-LP64: call     __ZN1XcvR1BEv
 // CHECK-LP64: call     __ZN1AC1ERKS_
 
 // CHECK-LP32: call     L__ZN1XcvR1BEv
 // CHECK-LP32: call     L__ZN1AC1ERKS_
+
+