[PATCH] D73226: [ms] [llvm-ml] Improve data support, adding names and complex initializers.

Nico Weber via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 12:27:34 PST 2020


thakis added inline comments.


================
Comment at: llvm/lib/MC/MCParser/MasmParser.cpp:2889
+
+    // Continue if we see a comma. (Also, allow line continuation.)
+  } while (parseOptionalToken(AsmToken::Comma) &&
----------------
What does ml do with

```
BYTE 2, 4, 6, 8,
BYTE 2, 4, 6, 8,
```

? Does it really error out?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D73226/new/

https://reviews.llvm.org/D73226





More information about the llvm-commits mailing list