Fix extra argument in part_set examples. Thanks Zhiru.
authorReid Spencer <rspencer@reidspencer.com>
Thu, 12 Apr 2007 01:03:03 +0000 (01:03 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 12 Apr 2007 01:03:03 +0000 (01:03 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35936 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LangRef.html

index 3b38ee0d256a74ca4da49ad15aaded0b7554e5e8..1c50d4610bb6fbbcf7f090dfb62b333164b72995 100644 (file)
@@ -4685,10 +4685,10 @@ wrap around to include both the highest and lowest bits. For example, if a
 cause these bits to be set: <tt>0xFF1F</tt>.</p>
 <h5>Examples:</h5>
 <pre>
-  llvm.part.set(0xFFFF, 0, Y, 4, 7) -&gt; 0xFF0F
-  llvm.part.set(0xFFFF, 0, Y, 7, 4) -&gt; 0x0060
-  llvm.part.set(0xFFFF, 0, Y, 8, 3) -&gt; 0x00F0
-  llvm.part.set(0xFFFF, 0, Y, 3, 8) -&gt; 0xFE07
+  llvm.part.set(0xFFFF, 0, 4, 7) -&gt; 0xFF0F
+  llvm.part.set(0xFFFF, 0, 7, 4) -&gt; 0x0060
+  llvm.part.set(0xFFFF, 0, 8, 3) -&gt; 0x00F0
+  llvm.part.set(0xFFFF, 0, 3, 8) -&gt; 0xFE07
 </pre>
 </div>