[llvm] r243339 - WebAssembly: more MCAsmInfo nits.
JF Bastien
jfb at google.com
Mon Jul 27 15:40:31 PDT 2015
Author: jfb
Date: Mon Jul 27 17:40:31 2015
New Revision: 243339
URL: http://llvm.org/viewvc/llvm-project?rev=243339&view=rev
Log:
WebAssembly: more MCAsmInfo nits.
Summary: As suggested by sunfish.
Subscribers: jfb, llvm-commits, sunfish
Differential Revision: http://reviews.llvm.org/D11544
Modified:
llvm/trunk/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
Modified: llvm/trunk/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp?rev=243339&r1=243338&r2=243339&view=diff
==============================================================================
--- llvm/trunk/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp (original)
+++ llvm/trunk/lib/Target/WebAssembly/MCTargetDesc/WebAssemblyMCAsmInfo.cpp Mon Jul 27 17:40:31 2015
@@ -27,16 +27,12 @@ WebAssemblyMCAsmInfo::WebAssemblyMCAsmIn
// 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";
More information about the llvm-commits
mailing list