[LLVMbugs] [Bug 23409] New: Missing qualifiers in derived to base implicit casts

bugzilla-daemon at llvm.org bugzilla-daemon at llvm.org
Mon May 4 11:44:32 PDT 2015


https://llvm.org/bugs/show_bug.cgi?id=23409

            Bug ID: 23409
           Summary: Missing qualifiers in derived to base implicit casts
           Product: clang
           Version: trunk
          Hardware: PC
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P
         Component: C++
          Assignee: unassignedclangbugs at nondot.org
          Reporter: abramo.bagnara at bugseng.com
                CC: dgregor at apple.com, llvmbugs at cs.uiuc.edu
    Classification: Unclassified

Created attachment 14282
  --> https://llvm.org/bugs/attachment.cgi?id=14282&action=edit
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 *'

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-bugs/attachments/20150504/109febaa/attachment.html>


More information about the llvm-bugs mailing list