diff options
| author | Fangrui Song <maskray@google.com> | 2018-05-29 05:38:05 +0000 |
|---|---|---|
| committer | Fangrui Song <maskray@google.com> | 2018-05-29 05:38:05 +0000 |
| commit | 74d6a7400cd2ec277b7d90ca56a31eea21ae0e48 (patch) | |
| tree | a698c4448de7e259560b40ce247e838322367f61 | |
| parent | 21aeddc3dc3fdbce697a2ce6375148d8415dc836 (diff) | |
| download | bcm5719-llvm-74d6a7400cd2ec277b7d90ca56a31eea21ae0e48.tar.gz bcm5719-llvm-74d6a7400cd2ec277b7d90ca56a31eea21ae0e48.zip | |
[LangRef] Fix TBAA example
llvm-svn: 333389
| -rw-r--r-- | llvm/docs/LangRef.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/LangRef.rst b/llvm/docs/LangRef.rst index 33587eebece..0f9062c3388 100644 --- a/llvm/docs/LangRef.rst +++ b/llvm/docs/LangRef.rst @@ -4742,7 +4742,7 @@ As a concrete example, the type descriptor graph for the following program void f(struct Outer* outer, struct Inner* inner, float* f, int* i, char* c) { outer->f = 0; // tag0: (OuterStructTy, FloatScalarTy, 0) outer->inner_a.i = 0; // tag1: (OuterStructTy, IntScalarTy, 12) - outer->inner_a.f = 0.0; // tag2: (OuterStructTy, IntScalarTy, 16) + outer->inner_a.f = 0.0; // tag2: (OuterStructTy, FloatScalarTy, 16) *f = 0.0; // tag3: (FloatScalarTy, FloatScalarTy, 0) } |

