diff options
author | Eric Muller <emuller@amazon.com> | 2019-02-12 11:41:16 -0800 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2019-03-11 16:06:41 -0700 |
commit | b38bab86229bc40d9cdf4819d6dc6aab444d0291 (patch) | |
tree | f1e511fbe2c16fc694595dca0d8ecd5560f35f02 | |
parent | 44a67ddeb878f7639b30d1884e38b1525aab4f4a (diff) | |
download | harfbuzz-b38bab86229bc40d9cdf4819d6dc6aab444d0291.tar.gz |
Update generation code for hb-ot-shape-complex-vowel-constraints.cc. Remove 'unlikely'
-rwxr-xr-x | src/gen-vowel-constraints.py | 3 | ||||
-rw-r--r-- | src/hb-ot-shape-complex-vowel-constraints.cc | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/gen-vowel-constraints.py b/src/gen-vowel-constraints.py index e4dc95df..afb21d92 100755 --- a/src/gen-vowel-constraints.py +++ b/src/gen-vowel-constraints.py @@ -180,6 +180,9 @@ print ('_hb_preprocess_text_vowel_constraints (const hb_ot_shape_plan_t *plan HB print ('\t\t\t\t hb_buffer_t *buffer,') print ('\t\t\t\t hb_font_t *font HB_UNUSED)') print ('{') +print (' if (buffer->flags & HB_BUFFER_FLAG_DO_NOT_INSERT_DOTTED_CIRCLE)') +print (' return;') +print () print (' /* UGLY UGLY UGLY business of adding dotted-circle in the middle of') print (' * vowel-sequences that look like another vowel. Data for each script') print (' * collected from the USE script development spec.') diff --git a/src/hb-ot-shape-complex-vowel-constraints.cc b/src/hb-ot-shape-complex-vowel-constraints.cc index 919c0305..e4cf6456 100644 --- a/src/hb-ot-shape-complex-vowel-constraints.cc +++ b/src/hb-ot-shape-complex-vowel-constraints.cc @@ -34,7 +34,7 @@ _hb_preprocess_text_vowel_constraints (const hb_ot_shape_plan_t *plan HB_UNUSED, hb_buffer_t *buffer, hb_font_t *font HB_UNUSED) { - if (unlikely (buffer->flags & HB_BUFFER_FLAG_DO_NOT_INSERT_DOTTED_CIRCLE)) + if (buffer->flags & HB_BUFFER_FLAG_DO_NOT_INSERT_DOTTED_CIRCLE) return; /* UGLY UGLY UGLY business of adding dotted-circle in the middle of |