2 // Test this without pch.
3 // RUN: %clang_cc1 -ffixed-point -include %S/Inputs/fixed-point-literal.h -fsyntax-only -ast-print -o - %s | FileCheck %s
6 // RUN: %clang_cc1 -ffixed-point -emit-pch -o %t %S/Inputs/fixed-point-literal.h
7 // RUN: %clang_cc1 -ffixed-point -include-pch %t -fsyntax-only -ast-print -o - %s | FileCheck %s
9 // CHECK: const short _Fract sf = -0.25r;
10 // CHECK: const _Fract f = 0.75r;
11 // CHECK: const long _Accum la = 25.25lk;
13 short _Fract sf2
= sf
;