blob: 63ff9d33b07b40903cad318d8a2bbd2401958528 (
plain)
1
2
3
4
5
6
|
! RUN: %flang_fc1 -fdebug-unparse %s -Dj=1 2>&1 | FileCheck %s
! Ensure that macro definitions don't affect INCLUDE lines (unlike #include)
#define sin cos
!CHECK: PRINT *, 0._4, j
include "include-file.h"
end
|