diff options
| -rw-r--r-- | llvm/lib/IR/Function.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/IR/Function.cpp b/llvm/lib/IR/Function.cpp index 5559a6c56e6..1e72b90a13c 100644 --- a/llvm/lib/IR/Function.cpp +++ b/llvm/lib/IR/Function.cpp @@ -211,7 +211,7 @@ Function::~Function() {    clearGC();    // Remove the intrinsicID from the Cache. -  if(getValueName() && isIntrinsic()) +  if (getValueName() && isIntrinsic())      getContext().pImpl->IntrinsicIDCache.erase(this);  } @@ -352,7 +352,7 @@ unsigned Function::getIntrinsicID() const {    LLVMContextImpl::IntrinsicIDCacheTy &IntrinsicIDCache =      getContext().pImpl->IntrinsicIDCache; -  if(!IntrinsicIDCache.count(this)) { +  if (!IntrinsicIDCache.count(this)) {      unsigned Id = lookupIntrinsicID();      IntrinsicIDCache[this]=Id;      return Id;  | 

