From 6c6efa1786aab7b41e6cf28855c2da4728435048 Mon Sep 17 00:00:00 2001 From: JF Bastien Date: Mon, 27 Jul 2015 22:40:31 +0000 Subject: [PATCH] WebAssembly: more MCAsmInfo nits. Summary: As suggested by sunfish. Subscribers: jfb, llvm-commits, sunfish Differential Revision: http://reviews.llvm.org/D11544 llvm-svn: 243339 --- llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp b/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp index 5a54b3a..c3ab48f 100644 --- a/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp +++ b/llvm/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp @@ -27,16 +27,12 @@ WebAssemblyMCAsmInfo::WebAssemblyMCAsmInfo(const Triple &T) { // TODO: What should MaxInstLength be? - // WebAssembly's text format uses s-expressions to represent its AST, - // LISP-style comments are therefore suitable. + // The s-expression format of WebAssembly uses LISP-style comments. CommentString = ";"; PrivateGlobalPrefix = ""; PrivateLabelPrefix = ""; - InlineAsmStart = ";APP\n"; - InlineAsmEnd = ";NO_APP\n"; - UseDataRegionDirectives = true; Data8bitsDirective = "\t.int8\t"; -- 2.7.4