]> granicus.if.org Git - clang/commitdiff
Remove unneeded typedef and volatile
authorMichael Ilseman <milseman@apple.com>
Mon, 10 Dec 2012 18:48:08 +0000 (18:48 +0000)
committerMichael Ilseman <milseman@apple.com>
Mon, 10 Dec 2012 18:48:08 +0000 (18:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169743 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/fast-math.c
test/CodeGen/finite-math.c

index 9f9a39269ed1b05ec3a46377bacd1f1ab396bd0c..76cfbbd3654863dbe08e2f0f7cbb6c783f7ca23e 100644 (file)
@@ -1,7 +1,5 @@
 // RUN: %clang_cc1 -ffast-math -emit-llvm -o - %s | FileCheck %s
-typedef unsigned cond_t;
-
-volatile float f0, f1, f2;
+float f0, f1, f2;
 
 void foo(void) {
   // CHECK: define void @foo()
index a79ee0c257cb7a039e7f2890c55d46794431b5d3..bf39cea42cea38b2905175e29c92f8c50ae7f67a 100644 (file)
@@ -1,7 +1,5 @@
 // RUN: %clang_cc1 -ffinite-math-only -emit-llvm -o - %s | FileCheck %s
-typedef unsigned cond_t;
-
-volatile float f0, f1, f2;
+float f0, f1, f2;
 
 void foo(void) {
   // CHECK: define void @foo()