aboutsummaryrefslogtreecommitdiff
path: root/test/Lexer/11-27-2007-FloatLiterals.c
blob: ccd9e2eff5926eb43c9aebef0e469ba58c7e8ef9 (plain)
1
2
3
4
5
6
7
8
9
10
11
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s

// CHECK: 0x3BFD83C940000000
// CHECK: 2.000000e+{{[0]*}}32
// CHECK: 0x3BFD83C940000000
// CHECK: 2.000000e+{{[0]*}}32

float  F  = 1e-19f;
double D  = 2e32;
float  F2 = 01e-19f;
double D2 = 02e32;