I have been looking at LLVM lately, and I find it to be quite an interesting architecture. However, looking through the tutorial and the reference material, I can\'t see any ex
Think about how a string is represented in common languages:
string
is a complex object with a constructor, destructor, and copy constructor. On the inside, it usually holds essentially a C string.LLVM's name is very self explanatory. It really is "low level". You have to implement strings how ever you want them to be. It would be silly for LLVM to force anyone into a specific implementation.