diff options
author | Jason Sams <rjsams@android.com> | 2010-09-01 12:33:06 -0700 |
---|---|---|
committer | Jason Sams <rjsams@android.com> | 2010-09-01 12:33:06 -0700 |
commit | 54adc5e8a1a4b43c67b8ae657453b5009e981b47 (patch) | |
tree | 267c3ecba871d6f005337bf5e8de37e115f4d602 /libacc/tests/data/inc.c | |
parent | 4358544a3ffde4ffd1e9434b99b2a7179f05cce4 (diff) | |
download | system_core-54adc5e8a1a4b43c67b8ae657453b5009e981b47.zip system_core-54adc5e8a1a4b43c67b8ae657453b5009e981b47.tar.gz system_core-54adc5e8a1a4b43c67b8ae657453b5009e981b47.tar.bz2 |
Remove ACC which has been replaced with llvm.
Free up space in build.
Change-Id: Ic5cc48bacca47b45809b9bc649ae5b629b7427ed
Diffstat (limited to 'libacc/tests/data/inc.c')
-rw-r--r-- | libacc/tests/data/inc.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/libacc/tests/data/inc.c b/libacc/tests/data/inc.c deleted file mode 100644 index 14c09d1..0000000 --- a/libacc/tests/data/inc.c +++ /dev/null @@ -1,14 +0,0 @@ -// Check integer operations - -int main() { - int a = 0; - printf("%d\n", a++); - printf("%d\n", a++); - printf("%d\n", a--); - printf("%d\n", a--); - printf("%d\n", ++a); - printf("%d\n", ++a); - printf("%d\n", --a); - printf("%d\n", --a); - return a; -} |