예제 #1
0
파일: test_type.py 프로젝트: zhihan/llvm
    def testCreateHalf(self):
        t1 = Type.half()
        t2 = Type.half(self.global_context)

        self.assertEqual(t1, t2)
        self.assertEqual('half', t1.name)
예제 #2
0
파일: test_type.py 프로젝트: zhihan/llvm
    def testCreateHalf(self):
        t1 = Type.half()
        t2 = Type.half(self.global_context)

        self.assertEqual(t1, t2)
        self.assertEqual('half', t1.name)