diff options
author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-10-04 15:44:01 +0000 |
---|---|---|
committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2014-10-04 15:44:01 +0000 |
commit | 985e1b933d4978d2324a24682c68564145a03ed8 (patch) | |
tree | 913922039ffc166cd2228a45121f78b5a7900324 /llvm/docs/SourceLevelDebugging.rst | |
parent | 51d7e885835e795583b5212fade103f41536ed73 (diff) | |
download | bcm5719-llvm-985e1b933d4978d2324a24682c68564145a03ed8.tar.gz bcm5719-llvm-985e1b933d4978d2324a24682c68564145a03ed8.zip |
DI: Fixup global syntax in example
llvm-svn: 219056
Diffstat (limited to 'llvm/docs/SourceLevelDebugging.rst')
-rw-r--r-- | llvm/docs/SourceLevelDebugging.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/SourceLevelDebugging.rst b/llvm/docs/SourceLevelDebugging.rst index 6bc3a282a3c..ad1888cd403 100644 --- a/llvm/docs/SourceLevelDebugging.rst +++ b/llvm/docs/SourceLevelDebugging.rst @@ -887,7 +887,7 @@ a C/C++ front-end would generate the following descriptors: ;; ;; Define the global itself. ;; - %MyGlobal = global int 100 + @MyGlobal = global i32 100, align 4 ... ;; ;; List of debug info of globals |