summaryrefslogtreecommitdiff
path: root/llvm/lib/Support/ModRef.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/lib/Support/ModRef.cpp')
-rw-r--r--llvm/lib/Support/ModRef.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/Support/ModRef.cpp b/llvm/lib/Support/ModRef.cpp
index 2bb9bc945bd2..1083c72902c0 100644
--- a/llvm/lib/Support/ModRef.cpp
+++ b/llvm/lib/Support/ModRef.cpp
@@ -49,6 +49,12 @@ raw_ostream &llvm::operator<<(raw_ostream &OS, MemoryEffects ME) {
case IRMemLocation::Other:
OS << "Other: ";
break;
+ case IRMemLocation::TargetMem0:
+ OS << "TargetMem0: ";
+ break;
+ case IRMemLocation::TargetMem1:
+ OS << "TargetMem1: ";
+ break;
}
OS << ME.getModRef(Loc);
});