]> granicus.if.org Git - clang/commitdiff
fix typos; NFC
authorSanjay Patel <spatel@rotateright.com>
Wed, 2 Dec 2015 23:06:17 +0000 (23:06 +0000)
committerSanjay Patel <spatel@rotateright.com>
Wed, 2 Dec 2015 23:06:17 +0000 (23:06 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@254561 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/fp-contract-pragma.cpp

index b4e24b9e6824ea1e7aaf460cfe1be0beaff99e72..86e236e4db5281f1e819018a589d9f78039887c4 100644 (file)
@@ -1,6 +1,6 @@
 // RUN: %clang_cc1 -O3 -triple %itanium_abi_triple -emit-llvm -o - %s | FileCheck %s
 
-// Is FP_CONTRACT is honored in a simple case?
+// Is FP_CONTRACT honored in a simple case?
 float fp_contract_1(float a, float b, float c) {
 // CHECK: _Z13fp_contract_1fff
 // CHECK: tail call float @llvm.fmuladd
@@ -19,7 +19,7 @@ float fp_contract_2(float a, float b, float c) {
   return a * b + c;  
 }
 
-// Does FP_CONTRACT survive template instatiation?
+// Does FP_CONTRACT survive template instantiation?
 class Foo {};
 Foo operator+(Foo, Foo);