@@ -20,24 +20,24 @@ newtype TInstruction =
2020 IRConstruction:: Raw:: hasInstruction ( tag1 , tag2 )
2121 } or
2222 TUnaliasedSsaPhiInstruction (
23- TRawInstruction blockStartInstr , UnaliasedSsa:: SSA :: MemoryLocation memoryLocation
23+ TRawInstruction blockStartInstr , UnaliasedSsa:: Ssa :: MemoryLocation memoryLocation
2424 ) {
25- UnaliasedSsa:: SSA :: hasPhiInstruction ( blockStartInstr , memoryLocation )
25+ UnaliasedSsa:: Ssa :: hasPhiInstruction ( blockStartInstr , memoryLocation )
2626 } or
2727 TUnaliasedSsaChiInstruction ( TRawInstruction primaryInstruction ) { none ( ) } or
2828 TUnaliasedSsaUnreachedInstruction ( IRFunctionBase irFunc ) {
29- UnaliasedSsa:: SSA :: hasUnreachedInstruction ( irFunc )
29+ UnaliasedSsa:: Ssa :: hasUnreachedInstruction ( irFunc )
3030 } or
3131 TAliasedSsaPhiInstruction (
32- TRawInstruction blockStartInstr , AliasedSsa:: SSA :: MemoryLocation memoryLocation
32+ TRawInstruction blockStartInstr , AliasedSsa:: Ssa :: MemoryLocation memoryLocation
3333 ) {
34- AliasedSsa:: SSA :: hasPhiInstruction ( blockStartInstr , memoryLocation )
34+ AliasedSsa:: Ssa :: hasPhiInstruction ( blockStartInstr , memoryLocation )
3535 } or
3636 TAliasedSsaChiInstruction ( TRawInstruction primaryInstruction ) {
37- AliasedSsa:: SSA :: hasChiInstruction ( primaryInstruction )
37+ AliasedSsa:: Ssa :: hasChiInstruction ( primaryInstruction )
3838 } or
3939 TAliasedSsaUnreachedInstruction ( IRFunctionBase irFunc ) {
40- AliasedSsa:: SSA :: hasUnreachedInstruction ( irFunc )
40+ AliasedSsa:: Ssa :: hasUnreachedInstruction ( irFunc )
4141 }
4242
4343/**
@@ -50,7 +50,7 @@ module UnaliasedSsaInstructions {
5050 class TPhiInstruction = TUnaliasedSsaPhiInstruction ;
5151
5252 TPhiInstruction phiInstruction (
53- TRawInstruction blockStartInstr , UnaliasedSsa:: SSA :: MemoryLocation memoryLocation
53+ TRawInstruction blockStartInstr , UnaliasedSsa:: Ssa :: MemoryLocation memoryLocation
5454 ) {
5555 result = TUnaliasedSsaPhiInstruction ( blockStartInstr , memoryLocation )
5656 }
@@ -83,7 +83,7 @@ module AliasedSsaInstructions {
8383 class TPhiInstruction = TAliasedSsaPhiInstruction or TUnaliasedSsaPhiInstruction ;
8484
8585 TPhiInstruction phiInstruction (
86- TRawInstruction blockStartInstr , AliasedSsa:: SSA :: MemoryLocation memoryLocation
86+ TRawInstruction blockStartInstr , AliasedSsa:: Ssa :: MemoryLocation memoryLocation
8787 ) {
8888 result = TAliasedSsaPhiInstruction ( blockStartInstr , memoryLocation )
8989 }
0 commit comments