diff options
author | Steve Naroff <snaroff@apple.com> | 2009-07-13 17:19:15 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-07-13 17:19:15 +0000 |
commit | 430ee5a4fd20c02e59d6a0d720401a5f21e4e5c1 (patch) | |
tree | 24e5ccd61fb519d48e10ea7561f1718039a0383c /lib/CodeGen/CodeGenTypes.cpp | |
parent | fe09eab8095da4d3a3c68441e1566671dc9568d3 (diff) |
Fix 5 issues from Chris's feedback on http://llvm.org/viewvc/llvm-project?view=rev&revision=75314.
Still more to come...just wanted to get the no-brainers out of the way.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@75477 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenTypes.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenTypes.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/CodeGen/CodeGenTypes.cpp b/lib/CodeGen/CodeGenTypes.cpp index a83c72f2b8..6add2c25c7 100644 --- a/lib/CodeGen/CodeGenTypes.cpp +++ b/lib/CodeGen/CodeGenTypes.cpp @@ -215,7 +215,6 @@ static const llvm::Type* getTypeForFormat(const llvm::fltSemantics &format) { const llvm::Type *CodeGenTypes::ConvertNewType(QualType T) { const clang::Type &Ty = *Context.getCanonicalType(T); - //T->dump(); switch (Ty.getTypeClass()) { #define TYPE(Class, Base) #define ABSTRACT_TYPE(Class, Base) |