Pointer Size:32 on 64bit?

Hey guys, long time listener first time caller. Anyways, on 64-bit windows should your pointer size be 32 bits or 64 bits? I’m in the process of porting my codebase from 32-bit to 64-bit, and in my ptx files I’m seeing this line at the top of my functions.

//  Target:ptx, ISA:sm_10, Endian:little, Pointer Size:32

Is this wrong? Shouldn’t pointer size be 64?

Sorry guys, funny how you stare at a problem for hours, and as soon as you post the question you realize you made a dumb mistake. Turns out I was passing -m 32 in the 64-bit version and -m 64 in the 32-bit version. DOH.