summaryrefslogtreecommitdiffstats
path: root/llvm/test/Bitcode
diff options
context:
space:
mode:
authorReid Kleckner <reid@kleckner.net>2014-12-01 21:04:44 +0000
committerReid Kleckner <reid@kleckner.net>2014-12-01 21:04:44 +0000
commit35fc363ce8f04c7a74ce3848ce25d90b1a5bd556 (patch)
treebd268fd99d6498b06272c4c8fe89961b6d001e7a /llvm/test/Bitcode
parentd0ce058f2ce944d32ad140465b6a74316510d269 (diff)
downloadbcm5719-llvm-35fc363ce8f04c7a74ce3848ce25d90b1a5bd556.tar.gz
bcm5719-llvm-35fc363ce8f04c7a74ce3848ce25d90b1a5bd556.zip
Parse 'ghccc' in .ll files as the GHC convention (cc 10)
Previously we just used "cc 10" in the .ll files, but that isn't very human readable. llvm-svn: 223076
Diffstat (limited to 'llvm/test/Bitcode')
-rw-r--r--llvm/test/Bitcode/calling-conventions.3.2.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/Bitcode/calling-conventions.3.2.ll b/llvm/test/Bitcode/calling-conventions.3.2.ll
index f36e9f82a2d..b60f1d70ca0 100644
--- a/llvm/test/Bitcode/calling-conventions.3.2.ll
+++ b/llvm/test/Bitcode/calling-conventions.3.2.ll
@@ -15,7 +15,7 @@ declare coldcc void @coldcc()
; CHECK: declare coldcc void @coldcc
declare cc10 void @cc10()
-; CHECK: declare cc10 void @cc10
+; CHECK: declare ghccc void @cc10
declare spir_kernel void @spir_kernel()
; CHECK: declare spir_kernel void @spir_kernel
@@ -72,7 +72,7 @@ define void @call_coldcc() {
}
define void @call_cc10 () {
-; CHECK: call cc10 void @cc10
+; CHECK: call ghccc void @cc10
call cc10 void @cc10 ()
ret void
}
OpenPOWER on IntegriCloud