Index: test/ios/app-bundle/TestApp/only-compile-in-32-bits.m |
diff --git a/test/rules-variables/src/input_path/subdir/test.c b/test/ios/app-bundle/TestApp/only-compile-in-32-bits.m |
similarity index 59% |
copy from test/rules-variables/src/input_path/subdir/test.c |
copy to test/ios/app-bundle/TestApp/only-compile-in-32-bits.m |
index 403dbbda4cf3d58a0790ca5eeb3e1bd483705670..0b1fa969c32a784568591a703ff22d3f322c0bdb 100644 |
--- a/test/rules-variables/src/input_path/subdir/test.c |
+++ b/test/ios/app-bundle/TestApp/only-compile-in-32-bits.m |
@@ -2,8 +2,10 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#include <stdio.h> |
+#import <UIKit/UIKit.h> |
-void input_path() { |
- printf("input_path\n"); |
+void OnlyCompileIn32Bits() |
Nico
2013/11/25 19:39:07
This is a bit subtle. How about
#if !defined(__
sdefresne
2013/11/26 09:29:16
Done.
|
+{ |
+ NSInteger integer = 0; |
+ NSLog(@"integer = %d", integer); |
} |