Esempio n. 1
0
    def test_function(self):
        got = itanium_mangler.mangle("what", [int32, float32])
        expect = "_Z4whatif"
        self.assertEqual(expect, got)

        got = itanium_mangler.mangle("a_little_brown_fox",
                                     [uint64, uint32, float64])
        expect = "_Z18a_little_brown_foxyjd"
        self.assertEqual(expect, got)
Esempio n. 2
0
    def test_function(self):
        got = itanium_mangler.mangle("what", [int32, float32])
        expect = "_Z4whatif"
        self.assertEqual(expect, got)

        got = itanium_mangler.mangle("a_little_brown_fox", [uint64,
                                                            uint32,
                                                            float64])
        expect = "_Z18a_little_brown_foxyjd"
        self.assertEqual(expect, got)
Esempio n. 3
0
 def mangler(self, name, argtypes):
     return itanium_mangler.mangle(name, argtypes)
Esempio n. 4
0
File: target.py Progetto: esc/numba
 def mangler(self, name, argtypes):
     return itanium_mangler.mangle(name, argtypes)