<html>
    <head>
      <base href="https://llvm.org/bugs/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW --- - Missing qualifiers in derived to base implicit casts"
   href="https://llvm.org/bugs/show_bug.cgi?id=23409">23409</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Missing qualifiers in derived to base implicit casts
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>clang
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Linux
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>C++
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedclangbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>abramo.bagnara@bugseng.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>dgregor@apple.com, llvmbugs@cs.uiuc.edu
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Created <span class=""><a href="attachment.cgi?id=14282" name="attach_14282" title="Candidate patch">attachment 14282</a> <a href="attachment.cgi?id=14282&action=edit" title="Candidate patch">[details]</a></span>
Candidate patch

The typescript below shows that the UncheckedDerivedToBase implicit cast
destination type is not const qualified as it should.

I've attached a patch to fix that for review.

$ cat p.cc
struct b {
  int x;
};

struct d : b {
};

void f() {
  const d* p;
  int v = p->x;
}
$ clang++ -cc1 -ast-dump p.cc
TranslationUnitDecl 0x1aff920 <<invalid sloc>> <invalid sloc>
|-TypedefDecl 0x1affe60 <<invalid sloc>> <invalid sloc> implicit __int128_t
'__int128'
|-TypedefDecl 0x1affec0 <<invalid sloc>> <invalid sloc> implicit __uint128_t
'unsigned __int128'
|-TypedefDecl 0x1b00280 <<invalid sloc>> <invalid sloc> implicit
__builtin_va_list '__va_list_tag [1]'
|-CXXRecordDecl 0x1b002d0 <p.cc:1:1, line:3:1> line:1:8 struct b definition
| |-CXXRecordDecl 0x1b003e0 <col:1, col:8> col:8 implicit struct b
| `-FieldDecl 0x1b00480 <line:2:3, col:7> col:7 referenced x 'int'
|-CXXRecordDecl 0x1b004d0 <line:5:1, line:6:1> line:5:8 struct d definition
| |-public 'struct b'
| `-CXXRecordDecl 0x1b431f0 <col:1, col:8> col:8 implicit struct d
`-FunctionDecl 0x1b432d0 <line:8:1, line:11:1> line:8:6 f 'void (void)'
  `-CompoundStmt 0x1b43578 <col:10, line:11:1>
    |-DeclStmt 0x1b43408 <line:9:3, col:13>
    | `-VarDecl 0x1b433b0 <col:3, col:12> col:12 used p 'const struct d *'
    `-DeclStmt 0x1b43560 <line:10:3, col:15>
      `-VarDecl 0x1b43430 <col:3, col:14> col:7 v 'int' cinit
        `-ImplicitCastExpr 0x1b43548 <col:11, col:14> 'int' <LValueToRValue>
          `-MemberExpr 0x1b43518 <col:11, col:14> 'const int' lvalue ->x
0x1b00480
            `-ImplicitCastExpr 0x1b434f8 <col:11> 'struct b *'
<UncheckedDerivedToBase (b)>
              `-ImplicitCastExpr 0x1b434b0 <col:11> 'const struct d *'
<LValueToRValue>
                `-DeclRefExpr 0x1b43488 <col:11> 'const struct d *' lvalue Var
0x1b433b0 'p' 'const struct d *'</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>