From 6c26f0b2a7ee3a74fac538c38453ecc581bd0536 Mon Sep 17 00:00:00 2001 From: Johnny Chen Date: Tue, 22 May 2012 19:41:53 +0000 Subject: [PATCH] Fix a typo. llvm-svn: 157278 --- lldb/test/functionalities/register/TestRegisters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/test/functionalities/register/TestRegisters.py b/lldb/test/functionalities/register/TestRegisters.py index 551a16b..2ac6861 100644 --- a/lldb/test/functionalities/register/TestRegisters.py +++ b/lldb/test/functionalities/register/TestRegisters.py @@ -74,7 +74,7 @@ class RegisterCommandsTestCase(TestBase): # Test reading of rax and eax. self.runCmd("register read rax eax") - # No write rax with a unique bit pattern and test that eax indeed represents the lower half of rax. + # Now write rax with a unique bit pattern and test that eax indeed represents the lower half of rax. self.runCmd("register write rax 0x1234567887654321") self.expect("expr -- ($rax & 0xffffffff) == $eax", substrs = ['true']) -- 2.7.4