[WebAssembly][NFC] Fix formatting error from rL356610

llvm-svn: 356622
This commit is contained in:
Thomas Lively 2019-03-20 22:34:34 +00:00
parent 42793bb459
commit 933339a877

View File

@ -242,8 +242,9 @@ void WebAssemblyAsmPrinter::EmitTargetFeatures() {
// "atomics" is special: code compiled without atomics may have had its
// atomics lowered to nonatomic operations. Such code would be dangerous
// to mix with proper atomics, so it is always Required or Disallowed.
Entry.Prefix = UsedFeatures[F.first] ? wasm::WASM_FEATURE_PREFIX_REQUIRED
: wasm::WASM_FEATURE_PREFIX_DISALLOWED;
Entry.Prefix = UsedFeatures[F.first]
? wasm::WASM_FEATURE_PREFIX_REQUIRED
: wasm::WASM_FEATURE_PREFIX_DISALLOWED;
EmittedFeatures.push_back(Entry);
} else {
// Other features are marked Used or not mentioned