diff options
author | Charles Davis <cdavis@mines.edu> | 2011-05-27 21:38:47 +0000 |
---|---|---|
committer | Charles Davis <cdavis@mines.edu> | 2011-05-27 21:38:47 +0000 |
commit | 88c816453fac630e23785dbd1755675d139603db (patch) | |
tree | 790e134fad789f5ca89d6689e957b184210e2a86 /include/llvm/CodeGen/TargetLoweringObjectFileImpl.h | |
parent | 2d6dcb34b7f39682f3eed08180631189fb4b6636 (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.h | 8 |
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; } |