Skip to content

Commit c17776b

Browse files
committed
format
1 parent 2ac7284 commit c17776b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

llvm/include/llvm/Analysis/DXILResource.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -451,7 +451,8 @@ class DXILBindingMap {
451451
/// ambiguous so mulitple creation instructions may be returned. The resulting
452452
/// ResourceBindingInfo can be used to depuplicate unique handles that
453453
/// reference the same resource
454-
SmallVector<dxil::ResourceBindingInfo> findCreationInfo(const Value *Key) const;
454+
SmallVector<dxil::ResourceBindingInfo>
455+
findCreationInfo(const Value *Key) const;
455456

456457
const_iterator find(const CallInst *Key) const {
457458
auto Pos = CallMap.find(Key);

llvm/lib/Analysis/DXILResource.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ DXILBindingMap::findCreationInfo(const Value *Key) const {
790790
const auto *It = find(CI);
791791
assert(It != Infos.end() && "HandleFromBinding must be in resource map");
792792
return {*It};
793-
}
793+
}
794794
default:
795795
break;
796796
}

0 commit comments

Comments
 (0)