summaryrefslogtreecommitdiff
path: root/include/llvm/MC/MCAsmInfo.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/llvm/MC/MCAsmInfo.h')
-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;
}