forked from OSchip/llvm-project
Fix Test11588.py on Linux. The test was failing because the synthetic type fields were resolving to int instead of long. A similar change was made in r155144 to eliminate the type specification for an earlier check in this test, so it seemed appropriate here too.
llvm-svn: 169615
This commit is contained in:
parent
6a51085e09
commit
e0930d3316
|
@ -63,8 +63,8 @@ class Issue11581TestCase(TestBase):
|
|||
self.expect("print *(StgClosure*)$r14",
|
||||
substrs = ["(StgClosure) $",
|
||||
"(StgClosure *) &$","0x",
|
||||
"(long) addr = ",
|
||||
"(long) load_address = ",
|
||||
"addr = ",
|
||||
"load_address = ",
|
||||
hex(addr)[2:].rstrip("L"),
|
||||
str(addr)])
|
||||
|
||||
|
|
Loading…
Reference in New Issue