mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
[python-bindings] Fixed 3 test failures caused by typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190465 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -125,8 +125,9 @@ class Module(LLVMObject):
|
||||
|
||||
def print_module_to_file(self, filename):
|
||||
out = c_char_p(None)
|
||||
result = lib.LLVMPrintModuleToFile(self, filename, byref(out))
|
||||
if not result:
|
||||
# Result is inverted so 0 means everything was ok.
|
||||
result = lib.LLVMPrintModuleToFile(self, filename, byref(out))
|
||||
if result:
|
||||
raise RuntimeError("LLVM Error: %s" % out.value)
|
||||
|
||||
class Context(LLVMObject):
|
||||
|
Reference in New Issue
Block a user