search for: setsourcefilenam

Displaying 1 result from an estimated 1 matches for "setsourcefilenam".

Did you mean: setsourcefilename
2020 May 25
3
Implications of Module SourceFileName
In the language I'm working on, a module (which does have a user-defined name in source) may be comprised of several files. I'm considering passing the (user-defined) name to llvm::Module's setModuleIdentifier, then a semicolon separated list of file names to setSourceFileName. Is this going to cause unforeseen problems? https://releases.llvm.org/10.0.0/docs/LangRef.html#source-filename seems to imply that it only needs to be a "consistent unique global identifier", but then also shows a unix-style path as the syntax. I don't see anything crazy being do...