Fix typo, make test case slightly more reabable. Thanks to Dmitri Gribenko for
authorLang Hames <lhames@gmail.com>
Sun, 21 Oct 2012 19:56:13 +0000 (19:56 +0000)
committerLang Hames <lhames@gmail.com>
Sun, 21 Oct 2012 19:56:13 +0000 (19:56 +0000)
the suggestions.

llvm-svn: 166400

clang/include/clang/Basic/DiagnosticParseKinds.td
clang/test/Parser/pragma-fp-contract.c

index e01cdb7..51270ab 100644 (file)
@@ -729,7 +729,7 @@ def warn_pragma_unused_expected_var : Warning<
   "expected '#pragma unused' argument to be a variable name">;
 def warn_pragma_unused_expected_punc : Warning<
   "expected ')' or ',' in '#pragma unused'">;
-// - #pragam fp_contract
+// - #pragma fp_contract
 def err_pragma_fp_contract_scope : Error<
   "'#pragma fp_contract' should only appear at file scope or at the start of a "
   "compound expression">; 
index 619053f..fa2bb11 100644 (file)
@@ -2,5 +2,6 @@
 
 void f1(void) {
   int x = 0;
-/* expected-error {{'#pragma fp_contract' should only appear at file scope or at the start of a compound expression}} */ #pragma STDC FP_CONTRACT ON
+/* expected-error@+1 {{'#pragma fp_contract' should only appear at file scope or at the start of a compound expression}} */
+#pragma STDC FP_CONTRACT ON
 }