aboutsummaryrefslogtreecommitdiffstats
path: root/test/LLVMC/test_data
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2009-09-13 20:14:57 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2009-09-13 20:14:57 +0000
commit1e31a13e32441fa6b86a8a7a5240f9806179149a (patch)
tree80d6f75e82ba31167043446768e13411ede2b483 /test/LLVMC/test_data
parent05af2616d0df19638e799d3e7afadea26d96a4ba (diff)
downloadexternal_llvm-1e31a13e32441fa6b86a8a7a5240f9806179149a.zip
external_llvm-1e31a13e32441fa6b86a8a7a5240f9806179149a.tar.gz
external_llvm-1e31a13e32441fa6b86a8a7a5240f9806179149a.tar.bz2
Fix a small issue with recent changes to this code.
The 'false.c' file wasn't being used. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81709 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/LLVMC/test_data')
-rw-r--r--test/LLVMC/test_data/false.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/LLVMC/test_data/false.c b/test/LLVMC/test_data/false.c
index 98842fe..3e4e8a7 100644
--- a/test/LLVMC/test_data/false.c
+++ b/test/LLVMC/test_data/false.c
@@ -3,8 +3,8 @@
extern "C" void test();
extern std::string test2();
-int main() {
- std::cout << "h";
- test();
- std::cout << test2() << '\n';
+int test_main() {
+ std::cout << "h";
+ test();
+ std::cout << test2() << '\n';
}