aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
diff options
context:
space:
mode:
authorCharles Davis <cdavis@mines.edu>2011-05-27 21:38:47 +0000
committerCharles Davis <cdavis@mines.edu>2011-05-27 21:38:47 +0000
commit88c816453fac630e23785dbd1755675d139603db (patch)
tree790e134fad789f5ca89d6689e957b184210e2a86 /include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
parent2d6dcb34b7f39682f3eed08180631189fb4b6636 (diff)
Add the suffix to the Win64 EH data sections' names if given. Add a test for
this. XFAIL'd, because the COFF AsmParser can't handle .section yet. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@132220 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/TargetLoweringObjectFileImpl.h')
-rw-r--r--include/llvm/CodeGen/TargetLoweringObjectFileImpl.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
index 70a46759d7..54e5751bd9 100644
--- a/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
+++ b/include/llvm/CodeGen/TargetLoweringObjectFileImpl.h
@@ -213,12 +213,8 @@ public:
virtual void Initialize(MCContext &Ctx, const TargetMachine &TM);
virtual const MCSection *getEHFrameSection() const;
- virtual const MCSection *getWin64EHFuncTableSection(StringRef) const {
- return PDataSection;
- }
- virtual const MCSection *getWin64EHTableSection(StringRef) const {
- return XDataSection;
- }
+ virtual const MCSection *getWin64EHFuncTableSection(StringRef) const;
+ virtual const MCSection *getWin64EHTableSection(StringRef) const;
virtual const MCSection *getDrectveSection() const { return DrectveSection; }