summaryrefslogtreecommitdiff
path: root/test/CodeGen/2007-02-25-C-DotDotDot.c
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2015-04-16 23:25:00 +0000
committerDavid Blaikie <dblaikie@gmail.com>2015-04-16 23:25:00 +0000
commit47e7a08734ae659dc8c79589e4b454e855b880bf (patch)
treeaed01f956a49d8005d744d7c63cae75ef6c07961 /test/CodeGen/2007-02-25-C-DotDotDot.c
parent80cbce09b9403a3b8a9e3c670ff1fef5fbcb56c7 (diff)
downloadclang-47e7a08734ae659dc8c79589e4b454e855b880bf.tar.gz
[opaque pointer types] Explicit non-pointer type for call expressions
(migration for recent LLVM change to textual IR for calls) git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@235147 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/2007-02-25-C-DotDotDot.c')
-rw-r--r--test/CodeGen/2007-02-25-C-DotDotDot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGen/2007-02-25-C-DotDotDot.c b/test/CodeGen/2007-02-25-C-DotDotDot.c
index 1c3a3df570..ade052ec6b 100644
--- a/test/CodeGen/2007-02-25-C-DotDotDot.c
+++ b/test/CodeGen/2007-02-25-C-DotDotDot.c
@@ -3,7 +3,7 @@
// Make sure the call to foo is compiled as:
// call float @foo()
// not
-// call float (...)* bitcast (float ()* @foo to float (...)*)( )
+// call float (...) bitcast (float ()* @foo to float (...)*)( )
static float foo() { return 0.0; }
// CHECK: call float @foo