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/llvm.AMDGPU.rcp.f64.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/llvm.AMDGPU.rcp.f64.ll')
-rw-r--r-- | llvm/test/CodeGen/R600/llvm.AMDGPU.rcp.f64.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/R600/llvm.AMDGPU.rcp.f64.ll b/llvm/test/CodeGen/R600/llvm.AMDGPU.rcp.f64.ll index b5dda0ce81f..85c902c0d4f 100644 --- a/llvm/test/CodeGen/R600/llvm.AMDGPU.rcp.f64.ll +++ b/llvm/test/CodeGen/R600/llvm.AMDGPU.rcp.f64.ll @@ -3,7 +3,7 @@ declare double @llvm.AMDGPU.rcp.f64(double) nounwind readnone declare double @llvm.sqrt.f64(double) nounwind readnone -; FUNC-LABEL: @rcp_f64 +; FUNC-LABEL: {{^}}rcp_f64: ; SI: V_RCP_F64_e32 define void @rcp_f64(double addrspace(1)* %out, double %src) nounwind { %rcp = call double @llvm.AMDGPU.rcp.f64(double %src) nounwind readnone @@ -11,7 +11,7 @@ define void @rcp_f64(double addrspace(1)* %out, double %src) nounwind { ret void } -; FUNC-LABEL: @rcp_pat_f64 +; FUNC-LABEL: {{^}}rcp_pat_f64: ; SI: V_RCP_F64_e32 define void @rcp_pat_f64(double addrspace(1)* %out, double %src) nounwind { %rcp = fdiv double 1.0, %src @@ -19,7 +19,7 @@ define void @rcp_pat_f64(double addrspace(1)* %out, double %src) nounwind { ret void } -; FUNC-LABEL: @rsq_rcp_pat_f64 +; FUNC-LABEL: {{^}}rsq_rcp_pat_f64: ; SI-UNSAFE: V_RSQ_F64_e32 ; SI-SAFE-NOT: V_RSQ_F64_e32 define void @rsq_rcp_pat_f64(double addrspace(1)* %out, double %src) nounwind { |