diff options
Diffstat (limited to 'clang/lib/CodeGen/CGClass.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGClass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGClass.cpp b/clang/lib/CodeGen/CGClass.cpp index 459b7742a26..2e2b420740b 100644 --- a/clang/lib/CodeGen/CGClass.cpp +++ b/clang/lib/CodeGen/CGClass.cpp @@ -1954,7 +1954,7 @@ CodeGenFunction::InitializeVTablePointer(BaseSubobject Base, // Don't initialize the vtable pointer if the class is marked with the // 'novtable' attribute. if ((RD == VTableClass || RD == NearestVBase) && - VTableClass->hasAttr<MsNoVTableAttr>()) + VTableClass->hasAttr<MSNoVTableAttr>()) return; // Compute the address point. |