Skip to content

Commit 45f4f8b

Browse files
author
Greg Clayton
committed
Fix comments to match the current reality.
llvm-svn: 221633
1 parent bd54916 commit 45f4f8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/source/Expression/IRForTarget.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1055,12 +1055,12 @@ IRForTarget::RewriteObjCSelector (Instruction* selector_load)
10551055

10561056
// Unpack the message name from the selector. In LLVM IR, an objc_msgSend gets represented as
10571057
//
1058-
// %tmp = load i8** @"\01L_OBJC_SELECTOR_REFERENCES_" ; <i8*>
1058+
// %tmp = load i8** @"OBJC_SELECTOR_REFERENCES_" ; <i8*>
10591059
// %call = call i8* (i8*, i8*, ...)* @objc_msgSend(i8* %obj, i8* %tmp, ...) ; <i8*>
10601060
//
10611061
// where %obj is the object pointer and %tmp is the selector.
10621062
//
1063-
// @"\01L_OBJC_SELECTOR_REFERENCES_" is a pointer to a character array called @"\01L_OBJC_llvm_moduleETH_VAR_NAllvm_moduleE_".
1063+
// @"OBJC_SELECTOR_REFERENCES_" is a pointer to a character array called @"\01L_OBJC_llvm_moduleETH_VAR_NAllvm_moduleE_".
10641064
// @"\01L_OBJC_llvm_moduleETH_VAR_NAllvm_moduleE_" contains the string.
10651065

10661066
// Find the pointer's initializer (a ConstantExpr with opcode GetElementPtr) and get the string from its target

0 commit comments

Comments
 (0)