fbfe005e4e
Repeats clang's '--cuda-path' option. [Reason] In case of absence of any other clang's options setting '-cuda-path' allows not to specify separator '--' before clang's '--cuda-path'. + Tests and scripts are updated accordingly.
9 lines
232 B
Plaintext
9 lines
232 B
Plaintext
// RUN: %run_test hipify "%s" "%t" %hipify_args %clang_args
|
|
|
|
// CHECK: #include "hip/hip_runtime.h"
|
|
// CHECK-NOT: #include "cuda_runtime.h"
|
|
// CHECK: #include <stdio.h>
|
|
#include "cuda.h"
|
|
#include "cuda_runtime.h"
|
|
#include <stdio.h>
|