[PATCH] D60168: [test-suite,CUDA] Add #include <stdio.h> to test_round.cu to fix a build error.

Phabricator via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Apr 3 12:01:40 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL357622: [test-suite,CUDA] Add #include <stdio.h> to test_round.cu to fix a build error. (authored by bixia1, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D60168?vs=193556&id=193560#toc

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D60168/new/

https://reviews.llvm.org/D60168

Files:
  test-suite/trunk/External/CUDA/test_round.cu


Index: test-suite/trunk/External/CUDA/test_round.cu
===================================================================
--- test-suite/trunk/External/CUDA/test_round.cu
+++ test-suite/trunk/External/CUDA/test_round.cu
@@ -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.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60168.193560.patch
Type: text/x-patch
Size: 536 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190403/2344c733/attachment.bin>


More information about the llvm-commits mailing list