[llvm] r361292 - Fix for sphinx bot warning
Leonard Chan via llvm-commits
llvm-commits at lists.llvm.org
Tue May 21 12:30:25 PDT 2019
Author: leonardchan
Date: Tue May 21 12:30:25 2019
New Revision: 361292
URL: http://llvm.org/viewvc/llvm-project?rev=361292&view=rev
Log:
Fix for sphinx bot warning
Modified:
llvm/trunk/docs/LangRef.rst
Modified: llvm/trunk/docs/LangRef.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.rst?rev=361292&r1=361291&r2=361292&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.rst (original)
+++ llvm/trunk/docs/LangRef.rst Tue May 21 12:30:25 2019
@@ -13284,7 +13284,8 @@ multplication can be represented as
::
%result = call i4 @llvm.smul.fix.i4(i4 %a, i4 %b, i32 %scale)
- =>
+
+ ; Expands to
%a2 = sext i4 %a to i8
%b2 = sext i4 %b to i8
%mul = mul nsw nuw i8 %a, %b
More information about the llvm-commits
mailing list