comparison libinterp/corefcn/jit-typeinfo.h @ 20132:1f9ed81bd173

maint: Fix spelling and grammar mistakes in docs and comments (bug #44878) * NEWS, io.txi, file-io.cc, jit-ir.h, jit-typeinfo.h, ls-oct-binary.cc: Fix misspellings of "compatibility" and "compatible". * bsxfun.cc, file-io.cc, ov-base.h, oct-shlib.h, mesh.m: Fix misspellings of "overridden". * emacs.txi, image.txi, graphics.cc, __magick_read__.cc: Replace verb phrase "allows to" with "allows one to".
author Rafael Laboissiere <rafael@laboissiere.net>
date Sun, 19 Apr 2015 06:53:30 -0300
parents 4197fc428c7d
children 5dfaaaae784f
comparison
equal deleted inserted replaced
20131:bb59bdbdb8ac 20132:1f9ed81bd173
38 // 38 //
39 // FIXME: 39 // FIXME:
40 // Operations are defined and implemented in jit_typeinfo. Eventually they 40 // Operations are defined and implemented in jit_typeinfo. Eventually they
41 // should be moved elsewhere. (just like with octave_typeinfo) 41 // should be moved elsewhere. (just like with octave_typeinfo)
42 42
43 // jit_range is compatable with the llvm range structure 43 // jit_range is compatible with the llvm range structure
44 struct 44 struct
45 jit_range 45 jit_range
46 { 46 {
47 jit_range (const Range& from) : base (from.base ()), limit (from.limit ()), 47 jit_range (const Range& from) : base (from.base ()), limit (from.limit ()),
48 inc (from.inc ()), nelem (from.nelem ()) 48 inc (from.inc ()), nelem (from.nelem ())
61 octave_idx_type nelem; 61 octave_idx_type nelem;
62 }; 62 };
63 63
64 std::ostream& operator << (std::ostream& os, const jit_range& rng); 64 std::ostream& operator << (std::ostream& os, const jit_range& rng);
65 65
66 // jit_array is compatable with the llvm array/matrix structures 66 // jit_array is compatible with the llvm array/matrix structures
67 template <typename T, typename U> 67 template <typename T, typename U>
68 struct 68 struct
69 jit_array 69 jit_array
70 { 70 {
71 jit_array () : array (0) { } 71 jit_array () : array (0) { }