[PATCH] D24741: [MC] Support .dcb directives in assembler parser
Petr Hosek via llvm-commits
llvm-commits at lists.llvm.org
Thu Sep 22 17:56:01 PDT 2016
phosek added inline comments.
================
Comment at: lib/MC/MCParser/AsmParser.cpp:1919-1921
@@ -1911,4 +1918,5 @@
return parseDirectiveValue(2);
case DK_DC_X:
return TokError(Twine(IDVal) +
" not currently supported for this target");
+ case DK_DCB:
----------------
davide wrote:
> This and the condition at line 1933 can be merged together, no?
That's true, it's a different directive but that's probably not an issue here.
Repository:
rL LLVM
https://reviews.llvm.org/D24741
More information about the llvm-commits
mailing list