Find where CALL.ABS.NOINC jumps to?

I am using cuobjdump to find where CALL.ABS.NOINC jumps to. For example, I have a simple function that just calls printf, but I get

    /*0080*/                   CALL.ABS.NOINC 0x0 ;                     /* 0x0000000000007943 */
                                                                        /* 0x000fea0003c00000 */

How come the jump target is not resolved? I also statically linked the binary too. Shouldn’t the jump target be resolved at this point (it is able to execute correctly).