Skip to content

Commit 17211ee

Browse files
committed
Remove namespace
Change-Id: Ia66c6504e1edaef9bb8ce607c869deac721aff2f
1 parent bfcc7ca commit 17211ee

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

llvm/lib/Target/AMDGPU/AMDGPUIGroupLP.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2696,16 +2696,12 @@ bool IGroupLPDAGMutation::initIGLPOpt(SUnit &SU) {
26962696

26972697
} // namespace
26982698

2699-
namespace llvm {
2700-
27012699
/// \p Phase specifes whether or not this is a reentry into the
27022700
/// IGroupLPDAGMutation. Since there may be multiple scheduling passes on the
27032701
/// same scheduling region (e.g. pre and post-RA scheduling / multiple
27042702
/// scheduling "phases"), we can reenter this mutation framework more than once
27052703
/// for a given region.
27062704
std::unique_ptr<ScheduleDAGMutation>
2707-
createIGroupLPDAGMutation(AMDGPU::SchedulingPhase Phase) {
2705+
llvm::createIGroupLPDAGMutation(AMDGPU::SchedulingPhase Phase) {
27082706
return std::make_unique<IGroupLPDAGMutation>(Phase);
27092707
}
2710-
2711-
}

0 commit comments

Comments
 (0)