diff options
author | Chris Lattner <sabre@nondot.org> | 2006-07-26 21:12:04 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-07-26 21:12:04 +0000 |
commit | 35d86fef1f1fc5845366c7c36803a6a3334d8a2e (patch) | |
tree | 076047d0209da8c574f8b30074a0698fc31fa61a /lib/Target/TargetMachine.cpp | |
parent | 5332430643545f55986b1896242220cc1ffdc136 (diff) |
Rename RelocModel::PIC to PIC_, to avoid conflicts with -DPIC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29307 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/TargetMachine.cpp')
-rw-r--r-- | lib/Target/TargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/TargetMachine.cpp b/lib/Target/TargetMachine.cpp index 1fbad7d19a..d1ffaa70d7 100644 --- a/lib/Target/TargetMachine.cpp +++ b/lib/Target/TargetMachine.cpp @@ -66,7 +66,7 @@ namespace { "Target default relocation model"), clEnumValN(Reloc::Static, "static", "Non-relocatable code"), - clEnumValN(Reloc::PIC, "pic", + clEnumValN(Reloc::PIC_, "pic", "Fully relocatable, position independent code"), clEnumValN(Reloc::DynamicNoPIC, "dynamic-no-pic", "Relocatable external references, non-relocatable code"), |