summaryrefslogtreecommitdiffstats
path: root/unittests/Basic
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2016-04-07 05:41:11 +0000
committerSaleem Abdulrasool <compnerd@compnerd.org>2016-04-07 05:41:11 +0000
commite5d3bf167a0a4b9a185b07719042836f7358d5c6 (patch)
tree1c2e00dd3bebc5c60e8be8bce038c6c8e4eff7e4 /unittests/Basic
parentfcf75bb5b7ec7704ad2c03139746b157307265be (diff)
Basic: thread CodeGenOptions into TargetInfo
This threads CodeGenOptions into the TargetInfo hierarchy. This is motivated by ARM which can change some target information based on the EABI selected (-meabi). Similar options exist for other platforms (e.g. MIPS) and thus is generally useful. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@265640 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Basic')
-rw-r--r--unittests/Basic/CMakeLists.txt1
1 files changed, 1 insertions, 0 deletions
diff --git a/unittests/Basic/CMakeLists.txt b/unittests/Basic/CMakeLists.txt
index 3cb3cb8d3c..5c1c0759e0 100644
--- a/unittests/Basic/CMakeLists.txt
+++ b/unittests/Basic/CMakeLists.txt
@@ -12,5 +12,6 @@ add_clang_unittest(BasicTests
target_link_libraries(BasicTests
clangBasic
+ clangFrontend
clangLex
)