Fix regression of test/CodeGenOpenCL/address-spaces.cl on ppc

llvm-svn: 315678
This commit is contained in:
Yaxun Liu 2017-10-13 13:53:06 +00:00
parent 0dcf64ad20
commit d029234fc6
1 changed files with 2 additions and 1 deletions

View File

@ -102,7 +102,8 @@ void test_struct() {
// SPIR-LABEL: define void @test_void_par()
void test_void_par(void) {}
// SPIR-LABEL: define i32 @test_func_return_type()
// On ppc64 returns signext i32.
// SPIR-LABEL: define{{.*}} i32 @test_func_return_type()
int test_func_return_type(void) {
return 0;
}