diff options
Diffstat (limited to 'clang/test/CodeGen/mips-unsigned-extend.c')
-rw-r--r-- | clang/test/CodeGen/mips-unsigned-extend.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/clang/test/CodeGen/mips-unsigned-extend.c b/clang/test/CodeGen/mips-unsigned-extend.c deleted file mode 100644 index 2074967f14b..00000000000 --- a/clang/test/CodeGen/mips-unsigned-extend.c +++ /dev/null @@ -1,15 +0,0 @@ -// RUN: %clang -target mips64-unknown-linux -O0 -mabi=n64 -S -emit-llvm %s -o - | FileCheck %s -check-prefix=N64 -// RUN: %clang -target mips64-unknown-linux -O0 -mabi=n32 -S -emit-llvm %s -o - | FileCheck %s -check-prefix=N32 -// RUN: %clang -target mips-unknown-linux -O0 -mabi=o32 -S -emit-llvm %s -o - | FileCheck %s -check-prefix=O32 - -void foo(unsigned a) { -} - -void foo1() { - unsigned f = 0xffffffe0; - foo(f); -} - -// N64: call void @foo(i32 signext %0) -// N32: call void @foo(i32 signext %0) -// O32: call void @foo(i32 signext %0)
\ No newline at end of file |