diff options
author | Yunzhong Gao <Yunzhong_Gao@playstation.sony.com> | 2015-12-10 01:37:18 +0000 |
---|---|---|
committer | Yunzhong Gao <Yunzhong_Gao@playstation.sony.com> | 2015-12-10 01:37:18 +0000 |
commit | eecc9e97d21536beed290d2fc7fe10f25e0ae08e (patch) | |
tree | d6d5b5656205662984bb2a5454de23692f239661 /clang | |
parent | 442f1b2795b7dd88d89ac5b3d688ba1a9f34e9e0 (diff) | |
download | bcm5719-llvm-eecc9e97d21536beed290d2fc7fe10f25e0ae08e.tar.gz bcm5719-llvm-eecc9e97d21536beed290d2fc7fe10f25e0ae08e.zip |
Fix a typo in the clang user manual.
-fmax-unknown-pointer-align => -fmax-type-align
llvm-svn: 255200
Diffstat (limited to 'clang')
-rw-r--r-- | clang/docs/UsersManual.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/docs/UsersManual.rst b/clang/docs/UsersManual.rst index 5e1a6cfad89..536ab6dda75 100644 --- a/clang/docs/UsersManual.rst +++ b/clang/docs/UsersManual.rst @@ -1108,7 +1108,7 @@ are listed below. This option restricts the generated code to use general registers only. This only applies to the AArch64 architecture. -**-f[no-]max-unknown-pointer-align=[number]** +**-f[no-]max-type-align=[number]** Instruct the code generator to not enforce a higher alignment than the given number (of bytes) when accessing memory via an opaque pointer or reference. This cap is ignored when directly accessing a variable or when the pointee @@ -1136,7 +1136,7 @@ are listed below. void initialize_vector(__aligned_v16si *v) { // The compiler may assume that āvā is 64-byte aligned, regardless of the - // value of -fmax-unknown-pointer-align. + // value of -fmax-type-align. } |