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)
llvm-svn: 169743

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

index 9f9a392..76cfbbd 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 a79ee0c..bf39cea 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()