diff options
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/CodeGenTBAA.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/CodeGen/CodeGenTBAA.cpp b/lib/CodeGen/CodeGenTBAA.cpp index bff9fa2605..ed2b13f11c 100644 --- a/lib/CodeGen/CodeGenTBAA.cpp +++ b/lib/CodeGen/CodeGenTBAA.cpp @@ -77,6 +77,10 @@ CodeGenTBAA::getTBAAInfo(QualType QTy) { } } + // For now, treat all pointers as equivalent to each other. + if (Ty->isPointerType()) + return MetadataCache[Ty] = getTBAAInfoForNamedType("TBAA.pointer", Char); + // For now, handle any other kind of type conservatively. return MetadataCache[Ty] = Char; } |