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:
Andrew Kaylor 2012-12-07 17:45:05 +00:00
parent 6a51085e09
commit e0930d3316
1 changed files with 2 additions and 2 deletions

View File

@ -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)])