diff options
author | Greg Clayton <gclayton@apple.com> | 2014-11-10 21:48:12 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2014-11-10 21:48:12 +0000 |
commit | 45f4f8bd7e344679ee9bf85d16f51d9a23922a90 (patch) | |
tree | 4b2c17a5c5e0635afd2238ea978d0121a591b91e | |
parent | bd549169d7e7f1b6142cfa42cdfbe0ae237e3c6d (diff) | |
download | bcm5719-llvm-45f4f8bd7e344679ee9bf85d16f51d9a23922a90.tar.gz bcm5719-llvm-45f4f8bd7e344679ee9bf85d16f51d9a23922a90.zip |
Fix comments to match the current reality.
llvm-svn: 221633
-rw-r--r-- | lldb/source/Expression/IRForTarget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Expression/IRForTarget.cpp b/lldb/source/Expression/IRForTarget.cpp index 0d82b6e8b07..5a2f6e83837 100644 --- a/lldb/source/Expression/IRForTarget.cpp +++ b/lldb/source/Expression/IRForTarget.cpp @@ -1055,12 +1055,12 @@ IRForTarget::RewriteObjCSelector (Instruction* selector_load) // Unpack the message name from the selector. In LLVM IR, an objc_msgSend gets represented as // - // %tmp = load i8** @"\01L_OBJC_SELECTOR_REFERENCES_" ; <i8*> + // %tmp = load i8** @"OBJC_SELECTOR_REFERENCES_" ; <i8*> // %call = call i8* (i8*, i8*, ...)* @objc_msgSend(i8* %obj, i8* %tmp, ...) ; <i8*> // // where %obj is the object pointer and %tmp is the selector. // - // @"\01L_OBJC_SELECTOR_REFERENCES_" is a pointer to a character array called @"\01L_OBJC_llvm_moduleETH_VAR_NAllvm_moduleE_". + // @"OBJC_SELECTOR_REFERENCES_" is a pointer to a character array called @"\01L_OBJC_llvm_moduleETH_VAR_NAllvm_moduleE_". // @"\01L_OBJC_llvm_moduleETH_VAR_NAllvm_moduleE_" contains the string. // Find the pointer's initializer (a ConstantExpr with opcode GetElementPtr) and get the string from its target |