forked from OSchip/llvm-project
Fix TestRegisters.py on arm
Previously it tried to write a bit in the FPSCR register marked as do not modify what failed on some device. llvm-svn: 254166
This commit is contained in:
parent
4eb6d4d1f2
commit
fd29986946
|
@ -269,7 +269,7 @@ class RegisterCommandsTestCase(TestBase):
|
|||
elif self.getArchitecture() in ['arm']:
|
||||
reg_list = [
|
||||
# reg value must-have
|
||||
("fpscr", "0x0000ff0e", True),
|
||||
("fpscr", "0xfbf79f9f", True),
|
||||
("s0", "1.25", True),
|
||||
("s31", "0.75", True),
|
||||
("d1", "123", True),
|
||||
|
|
Loading…
Reference in New Issue