summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CodeGenModule.h
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2016-11-30 23:15:55 +0000
committerJohn McCall <rjmccall@apple.com>2016-11-30 23:15:55 +0000
commitcd21d541397eadab33d94b3a0c476f96afc3477f (patch)
treeb167a5825d4ee0a7d8e3e341f9560ce2286160cc /clang/lib/CodeGen/CodeGenModule.h
parent78a695321e9e760172f1ddf400809449902e0af3 (diff)
downloadbcm5719-llvm-cd21d541397eadab33d94b3a0c476f96afc3477f.tar.gz
bcm5719-llvm-cd21d541397eadab33d94b3a0c476f96afc3477f.zip
Fix some layering violations where CGObjCMac's NSString emission was
performed at the CodeGenModule level. Would be NFC except we now also use a different uniquing structure so that we don't get spurious conflicts if you ask for both an NSString and a CFString for the same content (which is possible with builtins). llvm-svn: 288287
Diffstat (limited to 'clang/lib/CodeGen/CodeGenModule.h')
-rw-r--r--clang/lib/CodeGen/CodeGenModule.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/lib/CodeGen/CodeGenModule.h b/clang/lib/CodeGen/CodeGenModule.h
index 7def77479cb..c7ef80edb67 100644
--- a/clang/lib/CodeGen/CodeGenModule.h
+++ b/clang/lib/CodeGen/CodeGenModule.h
@@ -434,13 +434,6 @@ private:
/// int * but is actually an Obj-C class pointer.
llvm::WeakVH CFConstantStringClassRef;
- /// Cached reference to the class for constant strings. This value has type
- /// int * but is actually an Obj-C class pointer.
- llvm::WeakVH ConstantStringClassRef;
-
- /// \brief The LLVM type corresponding to NSConstantString.
- llvm::StructType *NSConstantStringType = nullptr;
-
/// \brief The type used to describe the state of a fast enumeration in
/// Objective-C's for..in loop.
QualType ObjCFastEnumerationStateType;
OpenPOWER on IntegriCloud