diff options
author | Michael Gottesman <mgottesman@apple.com> | 2014-02-23 04:43:26 +0000 |
---|---|---|
committer | Michael Gottesman <mgottesman@apple.com> | 2014-02-23 04:43:26 +0000 |
commit | c6886e7c7aa648de22c94a4da6d23b35c75dd325 (patch) | |
tree | 824460219d498159238ec66dd133f07ce0eb4630 /llvm | |
parent | f2b6e793936188b0fcd4c15b86409a402f88e001 (diff) | |
download | bcm5719-llvm-c6886e7c7aa648de22c94a4da6d23b35c75dd325.tar.gz bcm5719-llvm-c6886e7c7aa648de22c94a4da6d23b35c75dd325.zip |
[python-bindings] Remove some cruft that snuck in.
llvm-svn: 201966
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/bindings/python/llvm/core.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/bindings/python/llvm/core.py b/llvm/bindings/python/llvm/core.py index e8bfab8445f..c95952db6fc 100644 --- a/llvm/bindings/python/llvm/core.py +++ b/llvm/bindings/python/llvm/core.py @@ -70,7 +70,6 @@ class LLVMEnumeration(object): enum = cls(name, value) cls._value_map[value] = enum setattr(cls, name, enum) - #print cls, name, value class Attribute(LLVMEnumeration): """Represents an individual Attribute enumeration.""" @@ -200,7 +199,7 @@ class Module(LLVMObject): @classmethod def CreateWithName(cls, module_id): m = Module(lib.LLVMModuleCreateWithName(module_id)) - c = Context.GetGlobalContext().take_ownership(m) + Context.GetGlobalContext().take_ownership(m) return m @property @@ -604,7 +603,6 @@ def register_enumerations(): (RealPredicate, enumerations.RealPredicate), (LandingPadClauseTy, enumerations.LandingPadClauseTy), ] - s = set([]) for enum_class, enum_spec in enums: for name, value in enum_spec: print name, value @@ -612,7 +610,7 @@ def register_enumerations(): return enums def initialize_llvm(): - c = Context.GetGlobalContext() + Context.GetGlobalContext() p = PassRegistry() lib.LLVMInitializeCore(p) lib.LLVMInitializeTransformUtils(p) |