diff options
author | Chris Lattner <sabre@nondot.org> | 2008-10-08 06:26:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-10-08 06:26:11 +0000 |
commit | ac454b37897dee8bf528b18e6e42b417a1033ee3 (patch) | |
tree | 8e3d859ff1830c24bc67eea6427ac825b9998bbe /docs/LangRef.html | |
parent | a4d2870061c5e718b87ad79a753f636f3a5ca65a (diff) | |
download | external_llvm-ac454b37897dee8bf528b18e6e42b417a1033ee3.zip external_llvm-ac454b37897dee8bf528b18e6e42b417a1033ee3.tar.gz external_llvm-ac454b37897dee8bf528b18e6e42b417a1033ee3.tar.bz2 |
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57287 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r-- | docs/LangRef.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 6f68c81..523abfa 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -4340,7 +4340,7 @@ function is bound to the result argument. %r = call %struct.A @foo() <i>; yields { 32, i8 }</i> %gr = extractvalue %struct.A %r, 0 <i>; yields i32</i> %gr1 = extractvalue %struct.A %r, 1 <i>; yields i8</i> - %Z = call void @foo() noreturn <i>; indicates that %foo never returns nomrally</i> + %Z = call void @foo() noreturn <i>; indicates that %foo never returns normally</i> %ZZ = call zeroext i32 @bar() <i>; Return value is %zero extended</i> </pre> |