From 248a753f6b670692523c99afaeb8fe98f7ae3ca7 Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Tue, 15 Apr 2008 22:42:06 +0000 Subject: Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). This is a fairly mechanical/large change. As a result, I avoided making any changes/simplifications that weren't directly related. I did break two Analysis tests. I also have a couple FIXME's in UninitializedValues.cpp. Ted, can you take a look? If the bug isn't obvious, I am happy to dig in and fix it (since I broke it). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@49748 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/ModuleBuilder.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/CodeGen/ModuleBuilder.cpp') diff --git a/lib/CodeGen/ModuleBuilder.cpp b/lib/CodeGen/ModuleBuilder.cpp index 5710d8bf98..53ee2e4551 100644 --- a/lib/CodeGen/ModuleBuilder.cpp +++ b/lib/CodeGen/ModuleBuilder.cpp @@ -63,8 +63,9 @@ namespace { if (FunctionDecl *FD = dyn_cast(D)) { Builder->EmitFunction(FD); - } else if (FileVarDecl *FVD = dyn_cast(D)) { - Builder->EmitGlobalVarDeclarator(FVD); + } else if (VarDecl *VD = dyn_cast(D)) { + if (VD->isFileVarDecl()) + Builder->EmitGlobalVarDeclarator(VD); } else if (isa(D) || isa(D)) { // Forward declaration. Only used for type checking. } else if (ObjCMethodDecl *OMD = dyn_cast(D)){ -- cgit v1.2.3-18-g5258