diff options
author | Michael Gottesman <mgottesman@apple.com> | 2013-09-11 00:27:23 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2013-09-11 00:27:23 +0000 |
commit | 1e4e6fb892e28ef1f719cdb8a1c20ef3044d830e (patch) | |
tree | 76b39c4aea1dc2bb3f012effdb861948ce64fae0 | |
parent | fd690f38b37e9375234c8d146147dd643bac2a26 (diff) | |
download | bcm5719-llvm-1e4e6fb892e28ef1f719cdb8a1c20ef3044d830e.tar.gz bcm5719-llvm-1e4e6fb892e28ef1f719cdb8a1c20ef3044d830e.zip |
Fixed typo.
llvm-svn: 190459
-rw-r--r-- | llvm/bindings/python/llvm/core.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/bindings/python/llvm/core.py b/llvm/bindings/python/llvm/core.py index 2072d2f18dc..f7f3748d4c3 100644 --- a/llvm/bindings/python/llvm/core.py +++ b/llvm/bindings/python/llvm/core.py @@ -103,11 +103,11 @@ class Module(LLVMObject): return m @property - def data_layout(self): + def datalayout(self): return lib.LLVMGetDataLayout(self) - @data_layout.setter - def data_layout(self, new_data_layout): + @datalayout.setter + def datalayout(self, new_data_layout): """new_data_layout is a string.""" lib.LLVMSetDataLayout(self, new_data_layout) |