mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-12 22:05:33 +00:00
24 lines
558 B
C
24 lines
558 B
C
/*
|
|
* Copyright 2016 The Emscripten Authors. All rights reserved.
|
|
* Emscripten is available under two separate licenses, the MIT license and the
|
|
* University of Illinois/NCSA Open Source License. Both these licenses can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
int main()
|
|
{
|
|
// i32 vs i64
|
|
int32_t small = -1;
|
|
int64_t large = -1;
|
|
printf("*%d*\n", small == large);
|
|
small++;
|
|
printf("*%d*\n", small == large);
|
|
uint32_t usmall = -1;
|
|
uint64_t ularge = -1;
|
|
printf("*%d*\n", usmall == ularge);
|
|
return 0;
|
|
}
|