Skip to content

Commit caf92ef

Browse files
committed
Remove non-ASCII characters
Signed-off-by: Keith W. Campbell <[email protected]>
1 parent 40d9c66 commit caf92ef

File tree

7 files changed

+14
-16
lines changed

7 files changed

+14
-16
lines changed

compiler/codegen/ScratchRegisterManager.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ class TR_ManagedScratchRegister
9494
*
9595
* The effect is that you get the benefits of an optimally-implemented version of
9696
* B but with maintainability on par with ordinary virtual register allocation
97-
* outside an internal control flow region (where youd just use allocateRegister
97+
* outside an internal control flow region (where you'd just use allocateRegister
9898
* and stopUsingRegister).
9999
*/
100100
class TR_ScratchRegisterManager

compiler/compile/OMRCompilation.hpp

+5-5
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,11 @@ enum ProfilingMode
176176
* transformations to be selectively disabled during debugging in order to
177177
* isolate a buggy optimization. But this description fails to capture the
178178
* important effect that performTransformation has on the maintainability of
179-
* Testarossas code base.
179+
* Testarossa's code base.
180180
*
181181
* Calls to performTransformation can (and should) be placed around any part of
182-
* the code that is optional; in an optimizer, thats a lot of code. Tons of
183-
* Testarossa code is there only to improve performancenot for correctnessand
182+
* the code that is optional; in an optimizer, that's a lot of code. Tons of
183+
* Testarossa code is there only to improve performance-not for correctness-and
184184
* can therefore be guarded by performTransformation.
185185
*
186186
* A call in a hypothetical dead code elimination might look like this:
@@ -211,10 +211,10 @@ enum ProfilingMode
211211
* Most importantly, it identifies exactly the code that should be skipped if
212212
* someone wanted to prevent this opt from occurring in certain cases. Even if
213213
* you know nothing about an optimization, you can locate its
214-
* performTransformation call(s) and add an additional clause to this “if”
214+
* performTransformation call(s) and add an additional clause to this "if"
215215
* statement, secure in the knowledge that skipping this code will not leave
216216
* the optimization in some undefined state. The author of the optimization
217-
* has identified this code as skippable, so you can be fairly certain that
217+
* has identified this code as "skippable", so you can be fairly certain that
218218
* skipping it will do just what you want.
219219
*
220220
* If you are developing code that has optional parts, it is strongly

doc/compiler/il/SymbolsSymrefsAliasing.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
Copyright (c) 2016, 2018 IBM Corp. and others
2+
Copyright (c) 2016, 2019 IBM Corp. and others
33
44
This program and the accompanying materials are made available under
55
the terms of the Eclipse Public License 2.0 which accompanies this
@@ -247,7 +247,7 @@ is a shadow or static.
247247

248248
gcSafePoint bit vector is created to handle balanced GC mode or real-time mode. During
249249
these modes, we have pointers to arraylets (with no headers). Marking these pointers as
250-
collected or not collected wont work, i.e. collected will cause a crash in GC with no
250+
collected or not collected won't work, i.e. collected will cause a crash in GC with no
251251
header information and not collected means we might get garbage after GC. The
252252
gcSafePoint bit vector is conservative and holds symbol references that need to be
253253
killed at GC points, for instance at async checks, or allocations, or calls.
@@ -257,7 +257,7 @@ This results in less commoning across GC points.
257257

258258
Java has immutable types, i.e. integer, short, byte, long, float, double and string.
259259
To change their values, you will have to create new ones except in their constructor
260-
methods. We dont want to include these symbol references across calls such as
260+
methods. We don't want to include these symbol references across calls such as
261261
StringBuilder.append(), allowing commoning across the call in this case. We can look
262262
ahead in other classes and see if they are immutable under higher opt level.
263263

fvtest/porttest/omrfilestreamTest.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright (c) 2015, 2018 IBM Corp. and others
2+
* Copyright (c) 2015, 2019 IBM Corp. and others
33
*
44
* This program and the accompanying materials are made available under
55
* the terms of the Eclipse Public License 2.0 which accompanies this
@@ -1898,7 +1898,6 @@ TEST(PortFileStreamTest, omrfilestream_test_text)
18981898
/*
18991899
* This string is the sequence U+0024, U+00A2, U+20AC followed by newlines.
19001900
* They are 1 byte, 2 byte, and 3 byte characters, respectively.
1901-
* "$\n¢\n€\n"
19021901
*/
19031902

19041903
/* modified utf-8 */

jitbuilder/build/toolcfg/gnu/common.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ endif
7171
# This is the script that's used to generate TRBuildName.cpp
7272
GENERATE_VERSION_SCRIPT?=$(JIT_SCRIPT_DIR)/generateVersion.pl
7373

74-
# This is the script to preprocess ARM assembly files¬
74+
# This is the script to preprocess ARM assembly files
7575
ARMASM_SCRIPT?=$(JIT_SCRIPT_DIR)/armasm2gas.sed
7676

7777
# This is the command to check Z assembly files

longabout.html

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88
<body lang="EN-US">
99
<h2>About This Content</h2>
1010

11-
<p><em>September 8, 2017</em></p>
11+
<p><em>October 2, 2019</em></p>
1212
<h3>License</h3>
1313

1414
This program and the accompanying materials are made available under the terms of the Eclipse Public License 2 which accompanies this distribution and is available at https://www.eclipse.org/legal/epl-2.0/ or the Apache License, Version 2.0 which accompanies this distribution and is available at https://www.apache.org/licenses/LICENSE-2.0.
1515
<p>
16-
This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: GNU General Public License, version 2 with the GNU Classpath Exception [1] and GNU General Public License, version 2 with the OpenJDK Assembly Exception [2].
16+
This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: GNU General Public License, version 2 with the GNU Classpath Exception [1] and GNU General Public License, version 2 with the OpenJDK Assembly Exception [2].
1717
<p>
1818
[1] https://www.gnu.org/software/classpath/license.html
1919
<BR>
@@ -29,7 +29,6 @@ <h3>License</h3>
2929
indicated below, the terms and conditions of the EPL still apply to any source code in the Content
3030
and such source code may be obtained at <a href="http://www.eclipse.org/">http://www.eclipse.org</a>.</p>
3131

32-
3332
<h3>Third Party Content</h3>
3433
<p>The Content includes items that have been sourced from third parties as set out below. If you
3534
did not receive this Content directly from the Eclipse Foundation, the following is provided

third_party/gtest-1.8.0/include/gtest/internal/gtest-internal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ namespace edit_distance {
175175
// Returns the optimal edits to go from 'left' to 'right'.
176176
// All edits cost the same, with replace having lower priority than
177177
// add/remove.
178-
// Simple implementation of the WagnerFischer algorithm.
178+
// Simple implementation of the Wagner-Fischer algorithm.
179179
// See http://en.wikipedia.org/wiki/Wagner-Fischer_algorithm
180180
enum EditType { kMatch, kAdd, kRemove, kReplace };
181181
GTEST_API_ std::vector<EditType> CalculateOptimalEdits(

0 commit comments

Comments
 (0)