1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 13:11:39 +01:00

not all targets want to return an i32. What really matters is whether llc accepts the generated code.

llvm-svn: 36569
This commit is contained in:
Chris Lattner 2007-04-29 18:59:01 +00:00
parent 087a1aaaab
commit fae605a17e
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
// RUN: %llvmgcc %s -S -emit-llvm -o - | grep {call i32 asm}
// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc
struct V { short X, Y; };
int bar() {

View File

@ -1,4 +1,4 @@
// RUN: %llvmgcc %s -S -emit-llvm -o - | grep {call i32 asm}
// RUN: %llvmgcc %s -S -emit-llvm -o - | llvm-as | llc
union U { int x; float p; };
void foo() {