[cfe-commits] r169743 - in /cfe/trunk/test/CodeGen: fast-math.c finite-math.c

Michael Ilseman milseman at apple.com
Mon Dec 10 10:48:08 PST 2012


Author: milseman
Date: Mon Dec 10 12:48:08 2012
New Revision: 169743

URL: http://llvm.org/viewvc/llvm-project?rev=169743&view=rev
Log:
Remove unneeded typedef and volatile

Modified:
    cfe/trunk/test/CodeGen/fast-math.c
    cfe/trunk/test/CodeGen/finite-math.c

Modified: cfe/trunk/test/CodeGen/fast-math.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/fast-math.c?rev=169743&r1=169742&r2=169743&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/fast-math.c (original)
+++ cfe/trunk/test/CodeGen/fast-math.c Mon Dec 10 12:48:08 2012
@@ -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()

Modified: cfe/trunk/test/CodeGen/finite-math.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/finite-math.c?rev=169743&r1=169742&r2=169743&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/finite-math.c (original)
+++ cfe/trunk/test/CodeGen/finite-math.c Mon Dec 10 12:48:08 2012
@@ -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()





More information about the cfe-commits mailing list