[test-suite] r357622 - [test-suite, CUDA] Add #include <stdio.h> to test_round.cu to fix a build error.
Bixia Zheng via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 3 12:01:29 PDT 2019
Author: bixia1
Date: Wed Apr 3 12:01:29 2019
New Revision: 357622
URL: http://llvm.org/viewvc/llvm-project?rev=357622&view=rev
Log:
[test-suite,CUDA] Add #include <stdio.h> to test_round.cu to fix a build error.
Subscribers: jlebar, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D60168
Modified:
test-suite/trunk/External/CUDA/test_round.cu
Modified: test-suite/trunk/External/CUDA/test_round.cu
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/CUDA/test_round.cu?rev=357622&r1=357621&r2=357622&view=diff
==============================================================================
--- test-suite/trunk/External/CUDA/test_round.cu (original)
+++ test-suite/trunk/External/CUDA/test_round.cu Wed Apr 3 12:01:29 2019
@@ -6,8 +6,8 @@
//
//===----------------------------------------------------------------------===//
-#include <iostream>
#include <cassert>
+#include <stdio.h>
// Test the implementation of llvm intrinsic round. In particular, when the
// source is equidistant between two integers, it rounds away from zero.
More information about the llvm-commits
mailing list