diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-10 20:58:47 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-10 20:58:47 +0000 |
commit | 8097b65c432c3cc39339b6bb0ead9e1e09232ff7 (patch) | |
tree | 92d122ab7216e113ed3c26a0f0cfea978fb54da1 /lib/Target/X86/X86Subtarget.cpp | |
parent | 84853a17a3f79f37277f6b67ac9f5468ea6d8438 (diff) |
make PIC vs DynamicNoPIC be explicit in PICStyles.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75275 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86Subtarget.cpp')
-rw-r--r-- | lib/Target/X86/X86Subtarget.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lib/Target/X86/X86Subtarget.cpp b/lib/Target/X86/X86Subtarget.cpp index db9a09f76d..8259629b81 100644 --- a/lib/Target/X86/X86Subtarget.cpp +++ b/lib/Target/X86/X86Subtarget.cpp @@ -34,18 +34,6 @@ AsmWriterFlavor("x86-asm-syntax", cl::init(X86Subtarget::Unset), clEnumValN(X86Subtarget::Intel, "intel", "Emit Intel-style assembly"), clEnumValEnd)); -bool X86Subtarget::isPICStyleStubPIC(const TargetMachine &TM) const { - return PICStyle == PICStyles::Stub && - TM.getRelocationModel() == Reloc::PIC_; -} - -bool X86Subtarget::isPICStyleStubNoDynamic(const TargetMachine &TM) const { - return PICStyle == PICStyles::Stub && - TM.getRelocationModel() == Reloc::DynamicNoPIC; -} - - - /// ClassifyGlobalReference - Classify a global variable reference for the /// current subtarget according to how we should reference it in a non-pcrel /// context. |