Fixed typo.
llvm-svn: 190459
This commit is contained in:
@@ -103,11 +103,11 @@ class Module(LLVMObject):
|
|||||||
return m
|
return m
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def data_layout(self):
|
def datalayout(self):
|
||||||
return lib.LLVMGetDataLayout(self)
|
return lib.LLVMGetDataLayout(self)
|
||||||
|
|
||||||
@data_layout.setter
|
@datalayout.setter
|
||||||
def data_layout(self, new_data_layout):
|
def datalayout(self, new_data_layout):
|
||||||
"""new_data_layout is a string."""
|
"""new_data_layout is a string."""
|
||||||
lib.LLVMSetDataLayout(self, new_data_layout)
|
lib.LLVMSetDataLayout(self, new_data_layout)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user