diff options
author | Tom Stellard <thomas.stellard@amd.com> | 2014-10-01 17:15:17 +0000 |
---|---|---|
committer | Tom Stellard <thomas.stellard@amd.com> | 2014-10-01 17:15:17 +0000 |
commit | 79243d9664671d43eb2d688b3b1b30bf9a5a19b7 (patch) | |
tree | ce9b59b6bfc7ab0c68963918fa5f07cc838f99f4 /llvm/test/CodeGen/R600/fp_to_sint.ll | |
parent | 0a4e9a3b25ceac87bede40e6b4f7cae01468a507 (diff) | |
download | bcm5719-llvm-79243d9664671d43eb2d688b3b1b30bf9a5a19b7.tar.gz bcm5719-llvm-79243d9664671d43eb2d688b3b1b30bf9a5a19b7.zip |
R600: Call EmitFunctionHeader() in the AsmPrinter to populate the ELF symbol table
llvm-svn: 218776
Diffstat (limited to 'llvm/test/CodeGen/R600/fp_to_sint.ll')
-rw-r--r-- | llvm/test/CodeGen/R600/fp_to_sint.ll | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/llvm/test/CodeGen/R600/fp_to_sint.ll b/llvm/test/CodeGen/R600/fp_to_sint.ll index 322a55bf6e4..f71b8515ef0 100644 --- a/llvm/test/CodeGen/R600/fp_to_sint.ll +++ b/llvm/test/CodeGen/R600/fp_to_sint.ll @@ -1,7 +1,7 @@ ; RUN: llc -march=r600 -mcpu=redwood < %s | FileCheck %s --check-prefix=EG --check-prefix=FUNC ; RUN: llc -march=r600 -mcpu=SI -verify-machineinstrs < %s | FileCheck %s --check-prefix=SI --check-prefix=FUNC -; FUNC-LABEL: @fp_to_sint_i32 +; FUNC-LABEL: {{^}}fp_to_sint_i32: ; EG: FLT_TO_INT {{\** *}}T{{[0-9]+\.[XYZW], PV\.[XYZW]}} ; SI: V_CVT_I32_F32_e32 ; SI: S_ENDPGM @@ -11,7 +11,7 @@ define void @fp_to_sint_i32 (i32 addrspace(1)* %out, float %in) { ret void } -; FUNC-LABEL: @fp_to_sint_v2i32 +; FUNC-LABEL: {{^}}fp_to_sint_v2i32: ; EG: FLT_TO_INT {{\** *}}T{{[0-9]+\.[XYZW], PV\.[XYZW]}} ; EG: FLT_TO_INT {{\** *}}T{{[0-9]+\.[XYZW], PV\.[XYZW]}} ; SI: V_CVT_I32_F32_e32 @@ -22,7 +22,7 @@ define void @fp_to_sint_v2i32(<2 x i32> addrspace(1)* %out, <2 x float> %in) { ret void } -; FUNC-LABEL: @fp_to_sint_v4i32 +; FUNC-LABEL: {{^}}fp_to_sint_v4i32: ; EG: FLT_TO_INT {{\** *}}T{{[0-9]+\.[XYZW], PV\.[XYZW]}} ; EG: FLT_TO_INT {{\** *}}T{{[0-9]+\.[XYZW]}} ; EG: FLT_TO_INT {{\** *}}T{{[0-9]+\.[XYZW], PV\.[XYZW]}} @@ -38,7 +38,7 @@ define void @fp_to_sint_v4i32(<4 x i32> addrspace(1)* %out, <4 x float> addrspac ret void } -; FUNC-LABEL: @fp_to_sint_i64 +; FUNC-LABEL: {{^}}fp_to_sint_i64: ; EG-DAG: AND_INT ; EG-DAG: LSHR @@ -71,7 +71,7 @@ entry: ret void } -; FUNC: @fp_to_sint_v2i64 +; FUNC: {{^}}fp_to_sint_v2i64: ; EG-DAG: AND_INT ; EG-DAG: LSHR ; EG-DAG: SUB_INT @@ -122,7 +122,7 @@ define void @fp_to_sint_v2i64(<2 x i64> addrspace(1)* %out, <2 x float> %x) { ret void } -; FUNC: @fp_to_sint_v4i64 +; FUNC: {{^}}fp_to_sint_v4i64: ; EG-DAG: AND_INT ; EG-DAG: LSHR ; EG-DAG: SUB_INT |