summaryrefslogtreecommitdiffstats
path: root/llvm/test/CodeGen/R600/short-args.ll
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-02-05 17:09:11 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-02-05 17:09:11 +0000
commit2e5e7a5befd3f88925254ded993e8ac7573c7185 (patch)
tree4757baa2b4cb1497093da56b798a779479da7b12 /llvm/test/CodeGen/R600/short-args.ll
parent836cdd97fe698b12deddb5364a0e4efcb19586a6 (diff)
downloadbcm5719-llvm-2e5e7a5befd3f88925254ded993e8ac7573c7185.tar.gz
bcm5719-llvm-2e5e7a5befd3f88925254ded993e8ac7573c7185.zip
R600: Emit function name in the AsmPrinter
Emitting the function name allows us to check for it in the FileCheck tests so we can make sure FileCheck is checking the output of the correct function. llvm-svn: 174392
Diffstat (limited to 'llvm/test/CodeGen/R600/short-args.ll')
-rw-r--r--llvm/test/CodeGen/R600/short-args.ll4
1 files changed, 4 insertions, 0 deletions
diff --git a/llvm/test/CodeGen/R600/short-args.ll b/llvm/test/CodeGen/R600/short-args.ll
index 107025045cf..b69e327bf6d 100644
--- a/llvm/test/CodeGen/R600/short-args.ll
+++ b/llvm/test/CodeGen/R600/short-args.ll
@@ -1,5 +1,6 @@
; RUN: llc < %s -march=r600 -mcpu=redwood | FileCheck %s
+; CHECK: @i8_arg
; CHECK: VTX_READ_8 T{{[0-9]+\.X, T[0-9]+\.X}}
define void @i8_arg(i32 addrspace(1)* nocapture %out, i8 %in) nounwind {
@@ -9,6 +10,7 @@ entry:
ret void
}
+; CHECK: @i8_zext_arg
; CHECK: VTX_READ_8 T{{[0-9]+\.X, T[0-9]+\.X}}
define void @i8_zext_arg(i32 addrspace(1)* nocapture %out, i8 zeroext %in) nounwind {
@@ -18,6 +20,7 @@ entry:
ret void
}
+; CHECK: @i16_arg
; CHECK: VTX_READ_16 T{{[0-9]+\.X, T[0-9]+\.X}}
define void @i16_arg(i32 addrspace(1)* nocapture %out, i16 %in) nounwind {
@@ -27,6 +30,7 @@ entry:
ret void
}
+; CHECK: @i16_zext_arg
; CHECK: VTX_READ_16 T{{[0-9]+\.X, T[0-9]+\.X}}
define void @i16_zext_arg(i32 addrspace(1)* nocapture %out, i16 zeroext %in) nounwind {
OpenPOWER on IntegriCloud