diff options
author | Jack Palevich <jackpal@google.com> | 2009-07-29 16:22:26 -0700 |
---|---|---|
committer | Jack Palevich <jackpal@google.com> | 2009-07-29 16:22:26 -0700 |
commit | 9f51a2696126c6db40d00c8183b26e89fb7e443e (patch) | |
tree | 60246759fabc178c9a6ee6c2591bdfe35567ab74 /libacc/tests | |
parent | a7813bda4a4101baad47f11ef4ff9ff5e33d242f (diff) | |
download | system_core-9f51a2696126c6db40d00c8183b26e89fb7e443e.zip system_core-9f51a2696126c6db40d00c8183b26e89fb7e443e.tar.gz system_core-9f51a2696126c6db40d00c8183b26e89fb7e443e.tar.bz2 |
Load function symbols using lea syntax.
Use a common code path for ordinary, forward, and indirect calls.
Diffstat (limited to 'libacc/tests')
-rw-r--r-- | libacc/tests/test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libacc/tests/test.py b/libacc/tests/test.py index eafe442..c796746 100644 --- a/libacc/tests/test.py +++ b/libacc/tests/test.py @@ -132,7 +132,7 @@ class TestACC(unittest.TestCase): def compileCheck(self, args, stdErrResult, stdOutResult="", targets=['arm', 'x86']): targetSet = sets.ImmutableSet(targets) - if 'x86' in targetSet: + if False and 'x86' in targetSet: out, err = compile(args) self.checkResult(out, err, stdErrResult, stdOutResult) if 'arm' in targetSet: |