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 | 85a350f1d5427444bb8ca9ab275e0de6585bdce1 (patch) | |
tree | 8e3d859ff1830c24bc67eea6427ac825b9998bbe | |
parent | 04764deac8a05a74ff9399cf406f5525ff68543d (diff) |
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57287 91177308-0d34-0410-b5e6-96231b3b80d8
-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 6f68c810ef..523abfaeef 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> |