summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2014-05-12 13:01:42 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2014-05-12 13:01:42 +0000
commit7b6f59e8f64432d01ba2b7dc9985c5d27bd26e5b (patch)
tree30dfeeb9c03f0e4a26a096bc11000d07a07b3a53 /include
parent31546cd352b8f32366115a5153f4fe28b3b072d9 (diff)
downloadllvm-7b6f59e8f64432d01ba2b7dc9985c5d27bd26e5b.tar.gz
llvm-7b6f59e8f64432d01ba2b7dc9985c5d27bd26e5b.tar.bz2
llvm-7b6f59e8f64432d01ba2b7dc9985c5d27bd26e5b.tar.xz
Remove MCUseCFI from TargetMachine.
It was always true. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208547 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/Target/TargetMachine.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/Target/TargetMachine.h b/include/llvm/Target/TargetMachine.h
index ffb6650e66..151be73211 100644
--- a/include/llvm/Target/TargetMachine.h
+++ b/include/llvm/Target/TargetMachine.h
@@ -87,7 +87,6 @@ protected: // Can only create subclasses.
unsigned MCRelaxAll : 1;
unsigned MCNoExecStack : 1;
unsigned MCSaveTempLabels : 1;
- unsigned MCUseCFI : 1;
unsigned MCUseDwarfDirectory : 1;
unsigned RequireStructuredCFG : 1;
@@ -189,12 +188,6 @@ public:
/// setMCNoExecStack - Set whether an executabel stack is not needed.
void setMCNoExecStack(bool Value) { MCNoExecStack = Value; }
- /// hasMCUseCFI - Check whether we should use dwarf's .cfi_* directives.
- bool hasMCUseCFI() const { return MCUseCFI; }
-
- /// setMCUseCFI - Set whether we should use dwarf's .cfi_* directives.
- void setMCUseCFI(bool Value) { MCUseCFI = Value; }
-
/// hasMCUseDwarfDirectory - Check whether we should use .file directives with
/// explicit directories.
bool hasMCUseDwarfDirectory() const { return MCUseDwarfDirectory; }