summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/CGStmt.cpp
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2014-02-17 19:21:03 +0000
committerBob Wilson <bob.wilson@apple.com>2014-02-17 19:21:03 +0000
commita7b16e0ffde87990d3c6ae53e7bb456e2d888bd9 (patch)
treeea165ce5d18ac4abb4c48466324f8d56a4fcf784 /clang/lib/CodeGen/CGStmt.cpp
parent95a27b0e60dd838094b1f64bda7ad7ad6148dbee (diff)
downloadbcm5719-llvm-a7b16e0ffde87990d3c6ae53e7bb456e2d888bd9.tar.gz
bcm5719-llvm-a7b16e0ffde87990d3c6ae53e7bb456e2d888bd9.zip
Some nitpicky comment fixes for "i.e." and "e.g." abbreviations.
llvm-svn: 201527
Diffstat (limited to 'clang/lib/CodeGen/CGStmt.cpp')
-rw-r--r--clang/lib/CodeGen/CGStmt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGStmt.cpp b/clang/lib/CodeGen/CGStmt.cpp
index c8ca4c367be..353d8f075c1 100644
--- a/clang/lib/CodeGen/CGStmt.cpp
+++ b/clang/lib/CodeGen/CGStmt.cpp
@@ -1001,7 +1001,7 @@ void CodeGenFunction::EmitCaseStmtRange(const CaseStmt &S) {
unsigned NCases = Range.getZExtValue() + 1;
// We only have one region counter for the entire set of cases here, so we
// need to divide the weights evenly between the generated cases, ensuring
- // that the total weight is preserved. Ie, a weight of 5 over three cases
+ // that the total weight is preserved. E.g., a weight of 5 over three cases
// will be distributed as weights of 2, 2, and 1.
uint64_t Weight = Total / NCases, Rem = Total % NCases;
for (unsigned I = 0; I != NCases; ++I) {
OpenPOWER on IntegriCloud