summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2013-11-12 23:27:08 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2013-11-12 23:27:08 +0000
commit328066513d18acd4e44ad57172c73f1a2a026022 (patch)
tree23393c1f05d2158e1afdea643eebda5fcdfc35cd /include
parent7107aded170612748f46380f21ec6b71dfaf4910 (diff)
downloadllvm-328066513d18acd4e44ad57172c73f1a2a026022.tar.gz
llvm-328066513d18acd4e44ad57172c73f1a2a026022.tar.bz2
llvm-328066513d18acd4e44ad57172c73f1a2a026022.tar.xz
Remove always true flag.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@194530 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/MC/MCAsmInfo.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/llvm/MC/MCAsmInfo.h b/include/llvm/MC/MCAsmInfo.h
index 0c2bc4ca81..3da3a31b5f 100644
--- a/include/llvm/MC/MCAsmInfo.h
+++ b/include/llvm/MC/MCAsmInfo.h
@@ -160,10 +160,6 @@ namespace llvm {
/// names. Defaults to false.
bool AllowAtInName;
- /// AllowUTF8 - This is true if the assembler accepts UTF-8 input.
- // FIXME: Make this a more general encoding setting?
- bool AllowUTF8;
-
/// UseDataRegionDirectives - This is true if data region markers should
/// be printed as ".data_region/.end_data_region" directives. If false,
/// use "$d/$a" labels instead.
@@ -483,9 +479,6 @@ namespace llvm {
bool doesAllowAtInName() const {
return AllowAtInName;
}
- bool doesAllowUTF8() const {
- return AllowUTF8;
- }
bool doesSupportDataRegionDirectives() const {
return UseDataRegionDirectives;
}