From 2dc45b818f2e8b41376fc23563c67a7ecf093323 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 9 Dec 2004 18:13:12 +0000 Subject: [PATCH] More grammaro's fixed. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18708 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LangRef.html | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index ec18f23fbce..d3695bb3a0d 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -893,18 +893,15 @@ file:

-
Undefined Values -
- +
Undefined Values
+

The string 'undef' is recognized as a type-less constant that has + no specific value. Undefined values may be of any type, and be used anywhere + a constant is permitted.

-

The string 'undef' is recognized as a filler that has no specified -value. Undefined values may be of any type, and be used anywhere a constant -is.

- -

Undefined values are used to indicate the compiler that the program is well -defined no matter what value is used, giving it more freedom.

- +

Undefined values indicate to the compiler that the program is well defined + no matter what value is used, giving the compiler more freedom to optimize. +

@@ -933,14 +930,12 @@ following is the syntax for constant expressions:

OPCODE ( LHS, RHS )
-
Perform the specied operation of the LHS and RHS constants. OPCODE may be - any of the binary or bitwise +
Perform the specified operation of the LHS and RHS constants. OPCODE may + be any of the binary or bitwise binary operations. The constraints on operands are the same as those for the corresponding instruction (e.g. no bitwise operations on floating point are allowed).
- - -- 2.34.1