mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-05-28 15:38:57 +00:00
Add a new option.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24439 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
81f803df80
commit
adb0a068c6
@ -54,6 +54,11 @@ namespace llvm {
|
||||
/// onto all global symbols. This is often used for "_" or ".".
|
||||
const char *GlobalPrefix; // Defaults to ""
|
||||
|
||||
/// PrivateGlobalPrefix - This prefix is used for globals like constant
|
||||
/// pool entries that are completely private to the .o file and should not
|
||||
/// have names in the .o file. This is often "." or "L".
|
||||
const char *PrivateGlobalPrefix; // Defaults to "."
|
||||
|
||||
/// GlobalVarAddrPrefix/Suffix - If these are nonempty, these strings
|
||||
/// will enclose any GlobalVariable (that isn't a function)
|
||||
///
|
||||
@ -107,6 +112,7 @@ namespace llvm {
|
||||
: O(o), TM(tm),
|
||||
CommentString("#"),
|
||||
GlobalPrefix(""),
|
||||
PrivateGlobalPrefix("."),
|
||||
GlobalVarAddrPrefix(""),
|
||||
GlobalVarAddrSuffix(""),
|
||||
FunctionAddrPrefix(""),
|
||||
|
Loading…
x
Reference in New Issue
Block a user