Skip to content

Commit 9c1d2f8

Browse files
committed
[JITLink] Add "Pointer64Authenticated" string to aarch64::getEdgeKindName.
No testcase: this change just allows edge names to be correctly reported in debug dumps of LinkGraphs. (Previously Pointer64Authenticated edges were reported as "<Unrecognized edge kind>").
1 parent ba789c6 commit 9c1d2f8

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

llvm/lib/ExecutionEngine/JITLink/aarch64.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ const char *getEdgeKindName(Edge::Kind R) {
3838
switch (R) {
3939
case Pointer64:
4040
return "Pointer64";
41+
case Pointer64Authenticated:
42+
return "Pointer64Authenticated";
4143
case Pointer32:
4244
return "Pointer32";
4345
case Delta64:

0 commit comments

Comments
 (0)