Difference between FName(TEXT("ABC")) and FName("ABC")

All TEXT(“blah”) does is replace it with L"blah". It makes sense to do that because otherwise it’ll convert the string at runtime, at least that’s what I’ve been told.
Haven’t yet checked if it actually causes any difference in the assembly