StmtPrinter: factor out arg printing code to PrintCallArgs
[clang.git] / test / Lexer / 11-27-2007-FloatLiterals.c
blobf3d978b06925cdc4fdec42f0b677bddc4922cb31
1 // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s
3 // CHECK: 0x3BFD83C940000000
4 // CHECK: 2.000000e+{{[0]*}}32
5 // CHECK: 0x3BFD83C940000000
6 // CHECK: 2.000000e+{{[0]*}}32
7 // CHECK: 0x7FF0000000000000
9 float F = 1e-19f;
10 double D = 2e32;
11 float F2 = 01e-19f;
12 double D2 = 02e32;
13 float F3 = 0xFp100000000000000000000F;