diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-01-08 01:10:55 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-01-08 01:10:55 +0000 |
commit | 305c658ebce84bb9833fc0e7675554656453b8e8 (patch) | |
tree | 5bbb2a39d1b87600b2a0c2bdfe956d6f297eae53 /lib/CodeGen/CodeGenModule.cpp | |
parent | c6ed3840d685bd40bd921dd1f76cfb5a9b4fc599 (diff) |
Objc's compatibility-alias semantics and code
gen issue fix.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@61901 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenModule.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenModule.cpp b/lib/CodeGen/CodeGenModule.cpp index eaa8b58b41..ff8acde995 100644 --- a/lib/CodeGen/CodeGenModule.cpp +++ b/lib/CodeGen/CodeGenModule.cpp @@ -1065,7 +1065,7 @@ void CodeGenModule::EmitTopLevelDecl(Decl *D) { break; } case Decl::ObjCCompatibleAlias: - ErrorUnsupported(D, "Objective-C compatible alias"); + // compatibility-alias is a directive and has no code gen. break; case Decl::LinkageSpec: { |