[llvm-mca][CommandGuide] Fix typo in example.

llvm-svn: 330703
This commit is contained in:
Andrea Di Biagio 2018-04-24 10:09:32 +00:00
parent ea1efd32d0
commit 9a3d82e1c1

View File

@ -52,7 +52,7 @@ assembly text:
__asm volatile("# LLVM-MCA-BEGIN foo");
a += 42;
__asm volatile("# LLVM-MCA-END");
a \*= b;
a *= b;
return a;
}